summaryrefslogtreecommitdiff
path: root/gdk/quartz/GdkQuartzNSWindow.h
diff options
context:
space:
mode:
authorMarcus Karlsson <mk@acc.umu.se>2014-10-26 12:26:48 +0100
committerMatthias Clasen <mclasen@redhat.com>2014-10-27 06:46:12 -0400
commita703437796fefb44d4058cd36d6ba13abaab4725 (patch)
tree530ff434b3e1402886ae27bc787b9433bb983183 /gdk/quartz/GdkQuartzNSWindow.h
parent506d59f52666bd0f43ff950e46dd0b196e07f729 (diff)
downloadgtk+-a703437796fefb44d4058cd36d6ba13abaab4725.tar.gz
quartz: fix build on 10.6 and below
It is not possible to successfully build GTK+ on OS X 10.6 and below since NSFullScreenWindowMask is only available starting with 10.7. Add ifdef guards around setStyleMask: in order to allow it to build on earlier OS X releases. https://bugzilla.gnome.org/show_bug.cgi?id=737561
Diffstat (limited to 'gdk/quartz/GdkQuartzNSWindow.h')
-rw-r--r--gdk/quartz/GdkQuartzNSWindow.h3
1 files changed, 3 insertions, 0 deletions
diff --git a/gdk/quartz/GdkQuartzNSWindow.h b/gdk/quartz/GdkQuartzNSWindow.h
index 80b910cffc..540b965afb 100644
--- a/gdk/quartz/GdkQuartzNSWindow.h
+++ b/gdk/quartz/GdkQuartzNSWindow.h
@@ -42,7 +42,10 @@
-(BOOL)trackManualResize;
-(void)showAndMakeKey:(BOOL)makeKey;
-(void)hide;
+
+#ifdef AVAILABLE_MAC_OS_X_VERSION_10_7_AND_LATER
-(void)setStyleMask:(NSUInteger)styleMask;
+#endif
@end