aboutsummaryrefslogtreecommitdiffstats
path: root/Source/SPAppController.m
diff options
context:
space:
mode:
authorBibiko <bibiko@eva.mpg.de>2009-10-13 13:04:47 +0000
committerBibiko <bibiko@eva.mpg.de>2009-10-13 13:04:47 +0000
commitd77ef8c0d4526c44823216c219f0734639cad701 (patch)
tree48ad35f1035b41dcfd3e2c1bb5b067f77df8f4a0 /Source/SPAppController.m
parenta2a954c933d261e0cb9a0b4eca0d0d1f42902e81 (diff)
downloadsequelpro-d77ef8c0d4526c44823216c219f0734639cad701.tar.gz
sequelpro-d77ef8c0d4526c44823216c219f0734639cad701.tar.bz2
sequelpro-d77ef8c0d4526c44823216c219f0734639cad701.zip
• cleaned the current Applescript support definitions slightly
- removed unnecessary method 'handleQuitScriptCommand' from SPAppController - set main class to SPAppController
Diffstat (limited to 'Source/SPAppController.m')
-rw-r--r--Source/SPAppController.m13
1 files changed, 1 insertions, 12 deletions
diff --git a/Source/SPAppController.m b/Source/SPAppController.m
index e329f796..09bca271 100644
--- a/Source/SPAppController.m
+++ b/Source/SPAppController.m
@@ -390,7 +390,7 @@
- (BOOL)applicationShouldOpenUntitledFile:(NSApplication *)sender
{
TableDocument *firstTableDocument;
-
+
// Manually open a new document, setting SPAppController as sender to trigger autoconnection
if (firstTableDocument = [[NSDocumentController sharedDocumentController] makeUntitledDocumentOfType:@"SequelPro connection" error:nil]) {
if ([[NSUserDefaults standardUserDefaults] boolForKey:@"AutoConnectToDefault"]) {
@@ -478,17 +478,6 @@
return @"";
}
-
-
-/**
- * AppleScript handler to quit Sequel Pro
- */
-- (id)handleQuitScriptCommand:(NSScriptCommand *)command
-{
- [NSApp terminate:self];
- return nil;
-}
-
/**
* Sparkle updater delegate method. Called just before the updater relaunches Sequel Pro and we need to make
* sure that no sheets are currently open, which will prevent the app from being quit.