summaryrefslogtreecommitdiff
diff options
context:
space:
mode:
authorTor Lillqvist <tml@iki.fi>2012-12-21 18:38:36 +0200
committerTor Lillqvist <tml@iki.fi>2012-12-21 18:38:53 +0200
commitd978085ab2ffb2380bacf01af42a06f7fbd3d179 (patch)
treea8d2d3ca9e7e0117f6b1b0f77d3911d65bf95a44
parentdebd56b20ec505b57e70b6fd811539a36e3d5b93 (diff)
Try harder to fix build against 10.4 SDK
-rw-r--r--vcl/aqua/source/window/salframe.cxx6
1 files changed, 3 insertions, 3 deletions
diff --git a/vcl/aqua/source/window/salframe.cxx b/vcl/aqua/source/window/salframe.cxx
index cc76c7624a3e..388dffd90a8f 100644
--- a/vcl/aqua/source/window/salframe.cxx
+++ b/vcl/aqua/source/window/salframe.cxx
@@ -46,7 +46,7 @@
#include <Carbon/Carbon.h>
#include "postmac.h"
-#if !defined(MAC_OS_X_VERSION_10_7)
+#if MACOSX_SDK_VERSION < 1070
enum {
NSFullScreenWindowMask = (1 << 14)
@@ -57,9 +57,9 @@ enum {
NSWindowCollectionBehaviorFullScreenAuxiliary = (1 << 8)
};
-#if !defined(MAC_OS_X_VERSION_10_5)
+#if MACOSX_SDK_VERSION < 1050
-typedef unsigned int NSWindowCollectionBehavior;
+typedef NSUInteger NSWindowCollectionBehavior;
#endif