Fix compiling tools on OSX 10.10 (nw)

This commit is contained in:
Miodrag Milanovic 2015-04-16 15:26:52 +02:00
parent 3060bb0637
commit cce44e050a

View File

@ -723,7 +723,7 @@ static void UpdateChangeCountCallback(void *userData,
@end
@interface AUEffectUtilAppDelegate : NSObject
@interface AUEffectUtilAppDelegate : NSObject<NSApplicationDelegate>
{
EffectInfo *effects;
@ -1036,7 +1036,7 @@ int main(int argc, char *argv[])
pool = [[NSAutoreleasePool alloc] init];
[NSApplication sharedApplication];
AUEffectUtilAppDelegate *const delegate = [[AUEffectUtilAppDelegate alloc] init];
[NSApp setDelegate:delegate];
[[NSApplication sharedApplication] setDelegate:delegate];
[pool release];
// Let's go!