diff options
author | Tor Lillqvist <tml@collabora.com> | 2017-11-13 10:42:43 +0200 |
---|---|---|
committer | Tor Lillqvist <tml@collabora.com> | 2017-11-13 10:43:38 +0200 |
commit | 9d9b3a61b1233fa6e1f399dcfba1e79f65f56caf (patch) | |
tree | 492e4139610ce634bcba879d6caefd05ccc849ba /sd | |
parent | 791ab22556e7926f87dc2345ab49738ae6e67a24 (diff) |
MACOSX_SDK_VERSION is always at least 1090
Change-Id: I802d9aae2220ae6b8f67e3387c3b329f6b02163c
Diffstat (limited to 'sd')
-rw-r--r-- | sd/source/ui/remotecontrol/BluetoothServer.cxx | 12 |
1 files changed, 4 insertions, 8 deletions
diff --git a/sd/source/ui/remotecontrol/BluetoothServer.cxx b/sd/source/ui/remotecontrol/BluetoothServer.cxx index a4083c3625b5..4965ea11830b 100644 --- a/sd/source/ui/remotecontrol/BluetoothServer.cxx +++ b/sd/source/ui/remotecontrol/BluetoothServer.cxx @@ -41,14 +41,10 @@ #ifdef MACOSX #include <osl/conditn.hxx> #include <premac.h> - #if MACOSX_SDK_VERSION == 1080 - #import <IOBluetooth/IOBluetooth.h> - #else - #import <CoreFoundation/CoreFoundation.h> - #import <IOBluetooth/IOBluetoothUtilities.h> - #import <IOBluetooth/objc/IOBluetoothSDPUUID.h> - #import <IOBluetooth/objc/IOBluetoothSDPServiceRecord.h> - #endif + #import <CoreFoundation/CoreFoundation.h> + #import <IOBluetooth/IOBluetoothUtilities.h> + #import <IOBluetooth/objc/IOBluetoothSDPUUID.h> + #import <IOBluetooth/objc/IOBluetoothSDPServiceRecord.h> #include <postmac.h> #import "OSXBluetooth.h" #include "OSXBluetoothWrapper.hxx" |