Commit 67b1aab7 authored by Felix Paul Kühne's avatar Felix Paul Kühne

macosx: fix some more compilation warnings

parent f118a45b
......@@ -57,10 +57,6 @@ enum {
NSApplicationPresentationDisableMenuBarTransparency = (1 << 9)
};
@interface NSWindow (IntroducedInLion) // just to shut off warnings, not implemented!
- (void)setRestorable:(BOOL);
@end
#endif
#pragma mark -
......@@ -77,4 +73,14 @@ enum {
NSApplicationPresentationAutoHideToolbar = (1 << 11)
};
/* the follow is just to fix warnings, not for implementation! */
@interface NSWindow (IntroducedInLion)
- (void)setRestorable:(BOOL)b_value;
- (void)toggleFullScreen:(id)id_value;
@end
@interface NSEvent (IntroducedInLion)
- (BOOL)isDirectionInvertedFromDevice;
@end
#endif
Markdown is supported
0%
or
You are about to add 0 people to the discussion. Proceed with caution.
Finish editing this message first!
Please register or to comment