Re: [Qemu-devel] [PATCH] ui/cocoa.m: Fix macOS 10.14 deprecation warnings

2019-02-05 Thread Gerd Hoffmann
On Thu, Jan 31, 2019 at 11:12:25PM -0800, Brendan Shanks wrote: > macOS 10.14 deprecated NSOnState/NSOffState in favour of > NSControlStateValueOn/NSControlStateValueOff. Use the new constants, > and #define them to the old ones when compiling against a pre-10.13 SDK. > Also [NSGraphicsContext

[Qemu-devel] [PATCH] ui/cocoa.m: Fix macOS 10.14 deprecation warnings

2019-01-31 Thread Brendan Shanks
macOS 10.14 deprecated NSOnState/NSOffState in favour of NSControlStateValueOn/NSControlStateValueOff. Use the new constants, and #define them to the old ones when compiling against a pre-10.13 SDK. Also [NSGraphicsContext graphicsPort] is now deprecated, use [NSGraphicsContext CGContext] when