QCocoaWindow: Fix usage on deprecated API

Most APIs related to ProcessSerialNumber have
been deprecated since 10.9.

Change-Id: I6be5ae92cfe2c8f80d557af6c6a79c0cd016ba90
Reviewed-by: Jake Petroules <jake.petroules@qt.io>
Reviewed-by: Timur Pocheptsov <timur.pocheptsov@theqtcompany.com>
This commit is contained in:
Gabriel de Dietrich 2016-06-29 16:41:46 -07:00 committed by Timur Pocheptsov
parent 4e6dd1c50a
commit 8f71788ee0

View File

@ -1023,9 +1023,7 @@ void QCocoaWindow::raise()
} }
static bool raiseProcess = qt_mac_resolveOption(true, "QT_MAC_SET_RAISE_PROCESS"); static bool raiseProcess = qt_mac_resolveOption(true, "QT_MAC_SET_RAISE_PROCESS");
if (raiseProcess) { if (raiseProcess) {
ProcessSerialNumber psn; [NSApp activateIgnoringOtherApps:YES];
GetCurrentProcess(&psn);
SetFrontProcessWithOptions(&psn, kSetFrontProcessFrontWindowOnly);
} }
} }
} }