diff options
author | stuconnolly <stuart02@gmail.com> | 2010-08-17 14:48:01 +0000 |
---|---|---|
committer | stuconnolly <stuart02@gmail.com> | 2010-08-17 14:48:01 +0000 |
commit | 86c687edf1b91e18b55389200ea363ebd1f29058 (patch) | |
tree | a88b06e453fdd0c619574ff19f282d6a2173259f /Source/SPExportController.h | |
parent | abee65d8b05aad432a3d37ad498c8bb70341bd5c (diff) | |
download | sequelpro-86c687edf1b91e18b55389200ea363ebd1f29058.tar.gz sequelpro-86c687edf1b91e18b55389200ea363ebd1f29058.tar.bz2 sequelpro-86c687edf1b91e18b55389200ea363ebd1f29058.zip |
Revert the change made in r2536 which prevented the use of exporting the selected tables. We'll need to find another way to fix the original issue of not showing procs and functions in CSV and XML exports as well as preserving the user's selection when switching between export types.
Diffstat (limited to 'Source/SPExportController.h')
-rw-r--r-- | Source/SPExportController.h | 4 |
1 files changed, 1 insertions, 3 deletions
diff --git a/Source/SPExportController.h b/Source/SPExportController.h index 07593e43..c5dade4a 100644 --- a/Source/SPExportController.h +++ b/Source/SPExportController.h @@ -230,15 +230,13 @@ */ @property(readwrite, assign) MCPConnection *connection; -- (IBAction)export:(id)sender; - - (void)exportTables:(NSArray *)table asFormat:(SPExportType)format usingSource:(SPExportSource)source; - (void)openExportErrorsSheetWithString:(NSString *)errors; - (void)displayExportFinishedGrowlNotification; // IB action methods +- (IBAction)export:(id)sender; - (IBAction)closeSheet:(id)sender; -- (IBAction)switchTab:(id)sender; - (IBAction)switchInput:(id)sender; - (IBAction)cancelExport:(id)sender; - (IBAction)changeExportOutputPath:(id)sender; |