From ac274f4a3625953d89680c022d4203eb0010435c Mon Sep 17 00:00:00 2001 From: Robert Sesek Date: Wed, 1 Aug 2007 12:31:30 -0700 Subject: [PATCH] * Source/AppDelegate.m: ([AppDelegate applicationDidFinishLaunching:]): Use [AppDelegate showConnectionWindow:] to open the window instead of callling the exact same code --- Source/AppDelegate.m | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/Source/AppDelegate.m b/Source/AppDelegate.m index f378750..2be8057 100644 --- a/Source/AppDelegate.m +++ b/Source/AppDelegate.m @@ -24,7 +24,7 @@ */ - (void)applicationDidFinishLaunching: (NSNotification *)notif { - [[[ConnectWindowController sharedController] window] makeKeyAndOrderFront: self]; + [self showConnectionWindow: self]; } /** -- 2.22.5