diff options
author | stuconnolly <stuart02@gmail.com> | 2010-07-06 21:36:02 +0000 |
---|---|---|
committer | stuconnolly <stuart02@gmail.com> | 2010-07-06 21:36:02 +0000 |
commit | 25b1bbc7620b2fc5176be315ac6c4fc95edde359 (patch) | |
tree | 1f23098e3f03da23863b3703cb773170cc2dddd2 /Source/SPDatabaseDocument.m | |
parent | d3d7ed84f9c56d83d4a92f6f1c40d1280502adad (diff) | |
download | sequelpro-25b1bbc7620b2fc5176be315ac6c4fc95edde359.tar.gz sequelpro-25b1bbc7620b2fc5176be315ac6c4fc95edde359.tar.bz2 sequelpro-25b1bbc7620b2fc5176be315ac6c4fc95edde359.zip |
Rename CustomQuery as SPCustomQuery.
Diffstat (limited to 'Source/SPDatabaseDocument.m')
-rw-r--r-- | Source/SPDatabaseDocument.m | 4 |
1 files changed, 2 insertions, 2 deletions
diff --git a/Source/SPDatabaseDocument.m b/Source/SPDatabaseDocument.m index 028c2c30..76793e3f 100644 --- a/Source/SPDatabaseDocument.m +++ b/Source/SPDatabaseDocument.m @@ -29,7 +29,7 @@ #import "SPTablesList.h" #import "SPTableStructure.h" #import "SPTableContent.h" -#import "CustomQuery.h" +#import "SPCustomQuery.h" #import "TableDump.h" #import "ImageAndTextCell.h" #import "SPGrowlController.h" @@ -2346,7 +2346,7 @@ */ - (IBAction)exportSelectedTablesAs:(id)sender { - [exportControllerInstance exportTables:[tablesListInstance selectedTableItems] asFormat:[sender tag] usingSource:SPTableExport]; + [exportControllerInstance exportTables:[tablesListInstance selectedTableItems] asFormat:[sender tag]]; } #pragma mark - |