1.1 --- a/src/cocoaui/cocoa_prefs.m Tue Jul 21 20:33:21 2009 +1000
1.2 +++ b/src/cocoaui/cocoa_prefs.m Wed Feb 04 08:38:23 2015 +1000
1.6 [self setTitle: NS_("Preferences")];
1.7 - [self setDelegate: self];
1.8 + [self setDelegate: (id)self];
1.9 [self setMinSize: NSMakeSize(400,300)];
1.11 config_panes[0] = [[LxdreamPrefsPane alloc] initWithFrame: NSMakeRect(0,0,600,400)
1.13 NSArray *values = [NSArray arrayWithObjects: paths, ctrls, hotkeys, nil ];
1.14 toolbar_items = [NSDictionary dictionaryWithObjects: values forKeys: toolbar_ids];
1.16 - [toolbar setDelegate: self];
1.17 + [toolbar setDelegate: (id)self];
1.18 [toolbar setDisplayMode: NSToolbarDisplayModeIconOnly];
1.19 [toolbar setSizeMode: NSToolbarSizeModeSmall];
1.20 [toolbar setSelectedItemIdentifier: @"Paths"];