diff options
author | Tor Lillqvist <tml@iki.fi> | 2012-12-21 16:36:13 +0200 |
---|---|---|
committer | Tor Lillqvist <tml@iki.fi> | 2012-12-21 16:36:25 +0200 |
commit | 445d350c5c2595cb41ef97e2c871c991483dd803 (patch) | |
tree | f8b6d8e289334577f9874fe2dda96f34e9f60702 /vcl/aqua/source | |
parent | eafaec9539882ca4a8e4260ad01931a0e8905e8c (diff) |
Try to fix build against 10.4 SDK
Change-Id: I433512dbd533fe6c84e94059f378c4a7a6e8671d
Diffstat (limited to 'vcl/aqua/source')
-rw-r--r-- | vcl/aqua/source/window/salframe.cxx | 6 |
1 files changed, 6 insertions, 0 deletions
diff --git a/vcl/aqua/source/window/salframe.cxx b/vcl/aqua/source/window/salframe.cxx index b8367840fd9c..cc76c7624a3e 100644 --- a/vcl/aqua/source/window/salframe.cxx +++ b/vcl/aqua/source/window/salframe.cxx @@ -57,6 +57,12 @@ enum { NSWindowCollectionBehaviorFullScreenAuxiliary = (1 << 8) }; +#if !defined(MAC_OS_X_VERSION_10_5) + +typedef unsigned int NSWindowCollectionBehavior; + +#endif + #endif using namespace std; |