-
Notifications
You must be signed in to change notification settings - Fork 29
Commit
This commit does not belong to any branch on this repository, and may belong to a fork outside of the repository.
depends: osx: fix qt5 build against 10.10 sdk
- Loading branch information
Showing
2 changed files
with
54 additions
and
1 deletion.
There are no files selected for viewing
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
Original file line number | Diff line number | Diff line change |
---|---|---|
@@ -0,0 +1,52 @@ | ||
The following patch was taken from upstream: | ||
https://qt.gitorious.org/qt/qtbase/commit/70e4428b6f1c6a4bad112203f67ee7d22107616c.patch | ||
|
||
The first hunk was removed because it conflicts with 5.2.1, and is not currently needed. | ||
|
||
From 70e4428b6f1c6a4bad112203f67ee7d22107616c Mon Sep 17 00:00:00 2001 | ||
From: Gabriel de Dietrich <[email protected]> | ||
Date: Tue, 3 Jun 2014 14:20:20 +0200 | ||
Subject: [PATCH] Cocoa: Adapt to Xcode 6 clang version sudden pickiness | ||
MIME-Version: 1.0 | ||
Content-Type: text/plain; charset=UTF-8 | ||
Content-Transfer-Encoding: 8bit | ||
|
||
Yes, that means OS X Yosemite fix. | ||
|
||
Change-Id: I236f7af7b803de24ff0895e04c9a9253b5cfdb3b | ||
Reviewed-by: Morten Johan Sørvig <[email protected]> | ||
--- | ||
.../platforms/cocoa/qcocoaaccessibilityelement.mm | 2 +- | ||
.../platforms/cocoa/qcocoaapplicationdelegate.mm | 2 +- | ||
src/plugins/platforms/cocoa/qcocoamenuloader.mm | 2 +- | ||
3 files changed, 3 insertions(+), 3 deletions(-) | ||
|
||
diff --git a/src/plugins/platforms/cocoa/qcocoaapplicationdelegate.mm b/src/plugins/platforms/cocoa/qcocoaapplicationdelegate.mm | ||
index f841184..548c6a2 100644 | ||
--- a/src/plugins/platforms/cocoa/qcocoaapplicationdelegate.mm | ||
+++ b/src/plugins/platforms/cocoa/qcocoaapplicationdelegate.mm | ||
@@ -124,7 +124,7 @@ static void cleanupCocoaApplicationDelegate() | ||
[dockMenu release]; | ||
[qtMenuLoader release]; | ||
if (reflectionDelegate) { | ||
- [NSApp setDelegate:reflectionDelegate]; | ||
+ [[NSApplication sharedApplication] setDelegate:reflectionDelegate]; | ||
[reflectionDelegate release]; | ||
} | ||
[[NSNotificationCenter defaultCenter] removeObserver:self]; | ||
diff --git a/src/plugins/platforms/cocoa/qcocoamenuloader.mm b/src/plugins/platforms/cocoa/qcocoamenuloader.mm | ||
index 60bc3b5..9340e94 100644 | ||
--- a/src/plugins/platforms/cocoa/qcocoamenuloader.mm | ||
+++ b/src/plugins/platforms/cocoa/qcocoamenuloader.mm | ||
@@ -174,7 +174,7 @@ QT_END_NAMESPACE | ||
- (void)removeActionsFromAppMenu | ||
{ | ||
for (NSMenuItem *item in [appMenu itemArray]) | ||
- [item setTag:nil]; | ||
+ [item setTag:0]; | ||
} | ||
|
||
- (void)dealloc | ||
-- | ||
1.7.1 | ||
|