diff options
author | mltownsend <mltownsend@gmail.com> | 2009-01-20 16:53:33 +0000 |
---|---|---|
committer | mltownsend <mltownsend@gmail.com> | 2009-01-20 16:53:33 +0000 |
commit | 53d8462cf0922e36916012bf526f27457380b89f (patch) | |
tree | db19b059fffc4aaa335f2eecd4233b6986e48bf1 /Source | |
parent | b2f052fee3f743506cbe5c15f7f7bc0dbb057c5b (diff) | |
download | sequelpro-53d8462cf0922e36916012bf526f27457380b89f.tar.gz sequelpro-53d8462cf0922e36916012bf526f27457380b89f.tar.bz2 sequelpro-53d8462cf0922e36916012bf526f27457380b89f.zip |
Commented the handleQuiteCommand method and put in a return of nil.
Diffstat (limited to 'Source')
-rw-r--r-- | Source/MainController.m | 3 |
1 files changed, 2 insertions, 1 deletions
diff --git a/Source/MainController.m b/Source/MainController.m index 46996ef6..a041e8e1 100644 --- a/Source/MainController.m +++ b/Source/MainController.m @@ -793,10 +793,11 @@ checks for updates and opens download page in default browser */ } +// Method used for Applescript hooks to quit the application - (id)handleQuitScriptCommand:(NSScriptCommand *)command -/* what exactly is this for? */ { [ NSApp terminate: self ]; + return nil; } @end |