diff options
author | stuconnolly <stuart02@gmail.com> | 2011-07-24 19:39:41 +0000 |
---|---|---|
committer | stuconnolly <stuart02@gmail.com> | 2011-07-24 19:39:41 +0000 |
commit | df3c269342bcfb6fa343f16e10ad0b56f4b20852 (patch) | |
tree | 82dd1db55e7de22f46d7ec53d71de033f891af8f /Source/SPTableContent.h | |
parent | a6b8cd46677d517b2aad5e8bf7543a8d307b211e (diff) | |
download | sequelpro-df3c269342bcfb6fa343f16e10ad0b56f4b20852.tar.gz sequelpro-df3c269342bcfb6fa343f16e10ad0b56f4b20852.tar.bz2 sequelpro-df3c269342bcfb6fa343f16e10ad0b56f4b20852.zip |
Fix for NULL values in CSV export (same as last commit, but this one actually works).
Diffstat (limited to 'Source/SPTableContent.h')
-rw-r--r-- | Source/SPTableContent.h | 4 |
1 files changed, 2 insertions, 2 deletions
diff --git a/Source/SPTableContent.h b/Source/SPTableContent.h index 4b7def6f..fcde1f6b 100644 --- a/Source/SPTableContent.h +++ b/Source/SPTableContent.h @@ -205,9 +205,9 @@ - (IBAction)toggleLookAllFieldsMode:(id)sender; - (IBAction)closeSheet:(id)sender; -// Getter methods +// Data accessors - (NSArray *)currentResult; -- (NSArray *)currentDataResult; +- (NSArray *)currentDataResultWithNULLs:(BOOL)includeNULLs; // Task interaction - (void) startDocumentTaskForTab:(NSNotification *)aNotification; |