X-Git-Url: https://git.yukkurigames.com/?p=enjoyable.git;a=blobdiff_plain;f=ApplicationController.m;fp=ApplicationController.m;h=6a34916400c52691039436c05003fc94ed94357d;hp=aa51eeb4f18a0a810a0daaa6c018327e5be24563;hb=15a3aec049658f4a1c3c6e8c9f8a549fb8de0782;hpb=320e3065d251e11370e571df5705675937b76521 diff --git a/ApplicationController.m b/ApplicationController.m index aa51eeb..6a34916 100644 --- a/ApplicationController.m +++ b/ApplicationController.m @@ -16,10 +16,6 @@ BOOL active; } -@synthesize jsController; -@synthesize targetController; -@synthesize configsController; - - (void)didSwitchApplication:(NSNotification *)notification { NSRunningApplication *currentApp = notification.userInfo[NSWorkspaceApplicationKey]; [self.configsController activateConfigForProcess:currentApp.localizedName]; @@ -81,6 +77,6 @@ - (void)chooseConfig:(id)sender { int idx = [dockMenuBase indexOfItem:sender] - [self firstConfigMenuIndex]; Config *chosen = self.configsController.configs[idx]; - [configsController activateConfig:chosen]; + [_configsController activateConfig:chosen]; } @end