Fix 32 bit compilation problem

With Xcode 6.1.1 and OS X 10.10.1, we got an error :

MASPreferencesWindowController.m:29:13: Synthesized property 'toolbar' must either be named the same as a compatible instance variable or must explicitly name an instance variable
This commit is contained in:
Barijaona Ramaholimihaso
2014-12-29 22:36:45 +03:00
parent 966530c1de
commit b3b1d2f00c

View File

@@ -23,7 +23,7 @@ __attribute__((__visibility__("default")))
NSMutableDictionary *_minimumViewRects;
NSString *_title;
NSViewController <MASPreferencesViewController> *_selectedViewController;
IBOutlet NSToolbar *toolbar;
IBOutlet NSToolbar *_toolbar;
}
@property (nonatomic, readonly) NSMutableArray *viewControllers;