diff --git a/macosx/PrefsController.m b/macosx/PrefsController.m index af3f977aa..223e15ad8 100644 --- a/macosx/PrefsController.m +++ b/macosx/PrefsController.m @@ -734,7 +734,14 @@ - (IBAction) openGrowlApp: (id) sender { - // [GrowlApplicationBridge openGrowlPreferences: YES]; + SEL selector = NSSelectorFromString(@"openGrowlPreferences:"); + NSMethodSignature * signature = [GrowlApplicationBridge methodSignatureForSelector:selector]; + NSInvocation * invocation = [NSInvocation invocationWithMethodSignature:signature]; + invocation.selector = selector; + invocation.target = GrowlApplicationBridge.class; + BOOL yes = YES; + [invocation setArgument:&yes atIndex:0]; + [invocation invoke]; } - (void) openNotificationSystemPrefs: (id) sender