aboutsummaryrefslogtreecommitdiffstats
path: root/Source/MainController.m
diff options
context:
space:
mode:
authormltownsend <mltownsend@gmail.com>2009-01-20 16:53:33 +0000
committermltownsend <mltownsend@gmail.com>2009-01-20 16:53:33 +0000
commit53d8462cf0922e36916012bf526f27457380b89f (patch)
treedb19b059fffc4aaa335f2eecd4233b6986e48bf1 /Source/MainController.m
parentb2f052fee3f743506cbe5c15f7f7bc0dbb057c5b (diff)
downloadsequelpro-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/MainController.m')
-rw-r--r--Source/MainController.m3
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