diff options
author | stuconnolly <stuart02@gmail.com> | 2010-07-25 11:32:17 +0000 |
---|---|---|
committer | stuconnolly <stuart02@gmail.com> | 2010-07-25 11:32:17 +0000 |
commit | 0dff71796759307023398775fde082e3bdd41d31 (patch) | |
tree | b473ecef3cabfd134539855ecf6693def89e19bd /Source/SPExportController.m | |
parent | 15578792fecccae6121b1e8b47108776e3d80747 (diff) | |
download | sequelpro-0dff71796759307023398775fde082e3bdd41d31.tar.gz sequelpro-0dff71796759307023398775fde082e3bdd41d31.tar.bz2 sequelpro-0dff71796759307023398775fde082e3bdd41d31.zip |
During a CSV export if the user selects the tab as the separator update the extension to be .tsv
Diffstat (limited to 'Source/SPExportController.m')
-rw-r--r-- | Source/SPExportController.m | 16 |
1 files changed, 16 insertions, 0 deletions
diff --git a/Source/SPExportController.m b/Source/SPExportController.m index bb16d36f..b7d26fef 100644 --- a/Source/SPExportController.m +++ b/Source/SPExportController.m @@ -119,6 +119,12 @@ // If found the set the default path to the user's desktop, otherwise use their home directory [exportPathField setStringValue:([paths count] > 0) ? [paths objectAtIndex:0] : NSHomeDirectory()]; + + // Register to receive notifications of a change in selection of the CSV field separator + /*[[NSNotificationCenter defaultCenter] addObserver:self + selector:@selector(comboBoxSelectionDidChange:) + name:NSComboBoxSelectionDidChangeNotification + object:nil];*/ } #pragma mark - @@ -629,6 +635,16 @@ } #pragma mark - +#pragma mark Combo box delegate methods + +- (void)comboBoxSelectionDidChange:(NSNotification *)notification +{ + if ([notification object] == exportCSVFieldsTerminatedField) { + [self updateDisplayedExportFilename]; + } +} + +#pragma mark - #pragma mark Other /** |