diff options
author | Stephan Bergmann <sbergman@redhat.com> | 2021-10-27 14:10:02 +0200 |
---|---|---|
committer | Stephan Bergmann <sbergman@redhat.com> | 2021-10-27 16:32:04 +0200 |
commit | 323a2a249a6c87ffde52a1e826d5d12be649e018 (patch) | |
tree | 90cec5b4284aef7b12df1b970c473dee29d737f6 /apple_remote/source | |
parent | 13b2d160ec41ecce118e419d3bcab8004d4d858d (diff) |
Add support for macOS SDK 12.0
...and for now just silence all the new deprecation warnings
Change-Id: Ic6e04f4bade91a823872cd4e453c41ee1950bd77
Reviewed-on: https://gerrit.libreoffice.org/c/core/+/124275
Tested-by: Jenkins
Reviewed-by: Stephan Bergmann <sbergman@redhat.com>
Diffstat (limited to 'apple_remote/source')
-rw-r--r-- | apple_remote/source/HIDRemoteControlDevice.m | 2 | ||||
-rw-r--r-- | apple_remote/source/KeyspanFrontRowControl.m | 2 |
2 files changed, 4 insertions, 0 deletions
diff --git a/apple_remote/source/HIDRemoteControlDevice.m b/apple_remote/source/HIDRemoteControlDevice.m index 6ed20b8eb6bf..56e2b930d137 100644 --- a/apple_remote/source/HIDRemoteControlDevice.m +++ b/apple_remote/source/HIDRemoteControlDevice.m @@ -507,7 +507,9 @@ static void QueueCallbackFunction(void* target, IOReturn result, void* refcon, hidMatchDictionary = IOServiceMatching([self remoteControlDeviceName]); // Now search I/O Registry for matching devices. + SAL_WNODEPRECATED_DECLARATIONS_PUSH // kIOMasterPortDefault (12.0) ioReturnValue = IOServiceGetMatchingServices(kIOMasterPortDefault, hidMatchDictionary, &hidObjectIterator); + SAL_WNODEPRECATED_DECLARATIONS_POP if ((ioReturnValue == kIOReturnSuccess) && (hidObjectIterator != 0)) { hidDevice = IOIteratorNext(hidObjectIterator); diff --git a/apple_remote/source/KeyspanFrontRowControl.m b/apple_remote/source/KeyspanFrontRowControl.m index a337c497844f..46bc7917486a 100644 --- a/apple_remote/source/KeyspanFrontRowControl.m +++ b/apple_remote/source/KeyspanFrontRowControl.m @@ -81,7 +81,9 @@ } // Now search I/O Registry for matching devices. + SAL_WNODEPRECATED_DECLARATIONS_PUSH // kIOMasterPortDefault (12.0) ioReturnValue = IOServiceGetMatchingServices(kIOMasterPortDefault, hidMatchDictionary, &hidObjectIterator); + SAL_WNODEPRECATED_DECLARATIONS_POP if ((ioReturnValue == kIOReturnSuccess) && (hidObjectIterator != 0)) { hidDevice = IOIteratorNext(hidObjectIterator); |