Skip to content

Instantly share code, notes, and snippets.

@unixmonkey
Created June 12, 2014 19:38
Show Gist options
  • Save unixmonkey/985abd25b0f473506a47 to your computer and use it in GitHub Desktop.
Save unixmonkey/985abd25b0f473506a47 to your computer and use it in GitHub Desktop.
QT 4.8.6 on OSX Yosemite
--- ./qt-everywhere-opensource-src-4.8.6/src/gui/kernel/qcocoaapplicationdelegate_mac.mm 2014-06-12 10:20:38.000000000 +0300
+++ ./qt-everywhere-opensource-src-4.8.6/src/gui/kernel/qcocoaapplicationdelegate_mac.mm 2014-06-12 21:59:18.000000000 +0300
@@ -122,7 +122,7 @@
[dockMenu release];
[qtMenuLoader release];
if (reflectionDelegate) {
- [NSApp setDelegate:reflectionDelegate];
+ [[NSApplication sharedApplication] setDelegate:reflectionDelegate];
[reflectionDelegate release];
}
[super dealloc];
@chrisidefix
Copy link

Hi, thanks for the patch - I have seen it has been submitted as a bug report to Qt (https://bugreports.qt-project.org/browse/QTBUG-39644). However, I am only able to compile when building without phonon - is that normal? [./configure -no-webkit -no-phonon -no-phonon-backend]

Sign up for free to join this conversation on GitHub. Already have an account? Sign in to comment