diff options
author | stuconnolly <stuart02@gmail.com> | 2010-03-31 01:53:03 +0000 |
---|---|---|
committer | stuconnolly <stuart02@gmail.com> | 2010-03-31 01:53:03 +0000 |
commit | 4960324c8ec2b830ad4daf8ca313de82b2dc2b2c (patch) | |
tree | cc08aa19c2a2b06ac957f4969d266ccd0f5800f4 /Source | |
parent | 2b3d8c58bc1451bf67b28b70164017b0a1f2bf81 (diff) | |
download | sequelpro-4960324c8ec2b830ad4daf8ca313de82b2dc2b2c.tar.gz sequelpro-4960324c8ec2b830ad4daf8ca313de82b2dc2b2c.tar.bz2 sequelpro-4960324c8ec2b830ad4daf8ca313de82b2dc2b2c.zip |
Minor tidy up. Remove uneccessary import and rename pre-compiled header.
Diffstat (limited to 'Source')
-rw-r--r-- | Source/Sequel-Pro.pch (renamed from Source/sequel-pro_Prefix.pch) | 2 | ||||
-rw-r--r-- | Source/main.m | 2 |
2 files changed, 1 insertions, 3 deletions
diff --git a/Source/sequel-pro_Prefix.pch b/Source/Sequel-Pro.pch index 6801cbd0..07fdf502 100644 --- a/Source/sequel-pro_Prefix.pch +++ b/Source/Sequel-Pro.pch @@ -9,7 +9,7 @@ #ifdef DEBUG #define DLog(...) NSLog(__VA_ARGS__) #else - #define DLog(...) /* */ + #define DLog(...) #endif #define ALog(...) NSLog(__VA_ARGS__) diff --git a/Source/main.m b/Source/main.m index 7314ba6d..abd404da 100644 --- a/Source/main.m +++ b/Source/main.m @@ -22,8 +22,6 @@ // // More info at <http://code.google.com/p/sequel-pro/> -#import <Cocoa/Cocoa.h> - int main(int argc, char *argv[]) { return NSApplicationMain(argc, (const char **) argv); |