diff options
author | stuconnolly <stuart02@gmail.com> | 2009-12-11 00:51:47 +0000 |
---|---|---|
committer | stuconnolly <stuart02@gmail.com> | 2009-12-11 00:51:47 +0000 |
commit | 2f490fa3f4030c71aab8a1cafd9514a3fff2c6c4 (patch) | |
tree | 122f38e3f27563dddfed944c2e100109979d68b0 /Source/SPQueryController.m | |
parent | 1421e9877071c7b50ea10cdee8ba97e75a1c2604 (diff) | |
download | sequelpro-2f490fa3f4030c71aab8a1cafd9514a3fff2c6c4.tar.gz sequelpro-2f490fa3f4030c71aab8a1cafd9514a3fff2c6c4.tar.bz2 sequelpro-2f490fa3f4030c71aab8a1cafd9514a3fff2c6c4.zip |
Convert a bunch of #define'd constants to extern's, including preference toolbar identifiers, pasteboard drag types and file extensions.
Diffstat (limited to 'Source/SPQueryController.m')
-rw-r--r-- | Source/SPQueryController.m | 2 |
1 files changed, 1 insertions, 1 deletions
diff --git a/Source/SPQueryController.m b/Source/SPQueryController.m index 8a054ce3..177ec197 100644 --- a/Source/SPQueryController.m +++ b/Source/SPQueryController.m @@ -237,7 +237,7 @@ static SPQueryController *sharedQueryController = nil; { NSSavePanel *panel = [NSSavePanel savePanel]; - [panel setRequiredFileType:DEFAULT_CONSOLE_LOG_FILE_EXTENSION]; + [panel setRequiredFileType:SPFileExtensionSQL]; [panel setExtensionHidden:NO]; [panel setAllowsOtherFileTypes:YES]; |