From e45963dbcbd493e911ed86868e8a9540ca98e2ee Mon Sep 17 00:00:00 2001 From: meeh Date: Thu, 2 May 2019 23:00:44 +0000 Subject: [PATCH] Mac OSX Launcher: main.mm updated to use the new swift main class name. --- launchers/macosx/main.mm | 3 ++- 1 file changed, 2 insertions(+), 1 deletion(-) diff --git a/launchers/macosx/main.mm b/launchers/macosx/main.mm index 5230e53c3..54e0b5ee8 100644 --- a/launchers/macosx/main.mm +++ b/launchers/macosx/main.mm @@ -72,7 +72,8 @@ using namespace subprocess; - (void)applicationDidFinishLaunching:(NSNotification *)aNotification { // Init application here - self.swiftRuntime = [[SwiftMainDelegate alloc] init]; + // Here we initialize the swift code which would do most of the job from now on. + self.swiftRuntime = [[SwiftApplicationDelegate alloc] init]; // This setup allows the application to send notifications [[NSUserNotificationCenter defaultUserNotificationCenter] setDelegate:self];