aboutsummaryrefslogtreecommitdiffstats
path: root/Source/SPDatabaseDocument.m
diff options
context:
space:
mode:
authorstuconnolly <stuart02@gmail.com>2010-07-06 22:44:42 +0000
committerstuconnolly <stuart02@gmail.com>2010-07-06 22:44:42 +0000
commit6119b140f51a57fcc9abcf28b14029bb97d13b48 (patch)
tree932cf5b913dd614fa70693a0e9441825993d7dd0 /Source/SPDatabaseDocument.m
parent98321e0139af73928307da87ed31245b858e86d0 (diff)
downloadsequelpro-6119b140f51a57fcc9abcf28b14029bb97d13b48.tar.gz
sequelpro-6119b140f51a57fcc9abcf28b14029bb97d13b48.tar.bz2
sequelpro-6119b140f51a57fcc9abcf28b14029bb97d13b48.zip
Rename TableDump to SPDataImport and fix export selected tables functionality.
Diffstat (limited to 'Source/SPDatabaseDocument.m')
-rw-r--r--Source/SPDatabaseDocument.m10
1 files changed, 5 insertions, 5 deletions
diff --git a/Source/SPDatabaseDocument.m b/Source/SPDatabaseDocument.m
index 76793e3f..f18385c3 100644
--- a/Source/SPDatabaseDocument.m
+++ b/Source/SPDatabaseDocument.m
@@ -30,7 +30,7 @@
#import "SPTableStructure.h"
#import "SPTableContent.h"
#import "SPCustomQuery.h"
-#import "TableDump.h"
+#import "SPDataImport.h"
#import "ImageAndTextCell.h"
#import "SPGrowlController.h"
#import "SPExportController.h"
@@ -2346,7 +2346,7 @@
*/
- (IBAction)exportSelectedTablesAs:(id)sender
{
- [exportControllerInstance exportTables:[tablesListInstance selectedTableItems] asFormat:[sender tag]];
+ [exportControllerInstance exportTables:[tablesListInstance selectedTableItems] asFormat:[sender tag] usingSource:SPTableExport];
}
#pragma mark -
@@ -3417,7 +3417,7 @@
}
/**
- * Passes the request to the tableDump object
+ * Passes the request to the dataImport object
*/
- (IBAction)import:(id)sender
{
@@ -3425,7 +3425,7 @@
}
/**
- * Passes the request to the tableDump object
+ * Passes the request to the dataImport object
*/
- (IBAction)importFromClipboard:(id)sender
{
@@ -3433,7 +3433,7 @@
}
/**
- * Passes the request to the tableDump object
+ * Passes the request to the dataImport object
*/
- (IBAction)export:(id)sender
{