From 15443a4cab510901e2d3792ecbb3d3a559cc34b6 Mon Sep 17 00:00:00 2001 From: kleuter Date: Wed, 11 Jan 2017 18:13:33 +0100 Subject: [PATCH] fix for https://bugreports.qt.io/browse/QTBUG-18624 --- .../plugins/platforms/cocoa/qcocoaapplicationdelegate.mm | 6 +++--- 1 file changed, 3 insertions(+), 3 deletions(-) diff --git a/5.6.2/qtbase/src/plugins/platforms/cocoa/qcocoaapplicationdelegate.mm b/5.6.2/qtbase/src/plugins/platforms/cocoa/qcocoaapplicationdelegate.mm index caa8884..e3d82e0 100644 --- a/5.6.2/qtbase/src/plugins/platforms/cocoa/qcocoaapplicationdelegate.mm +++ b/5.6.2/qtbase/src/plugins/platforms/cocoa/qcocoaapplicationdelegate.mm @@ -262,10 +262,10 @@ QT_END_NAMESPACE application depends on. */ NSAppleEventManager *eventManager = [NSAppleEventManager sharedAppleEventManager]; - [eventManager setEventHandler:self + /*[eventManager setEventHandler:self andSelector:@selector(appleEventQuit:withReplyEvent:) forEventClass:kCoreEventClass - andEventID:kAEQuitApplication]; + andEventID:kAEQuitApplication];*/ [eventManager setEventHandler:self andSelector:@selector(getUrl:withReplyEvent:) forEventClass:kInternetEventClass @@ -276,7 +276,7 @@ QT_END_NAMESPACE - (void) removeAppleEventHandlers { NSAppleEventManager *eventManager = [NSAppleEventManager sharedAppleEventManager]; - [eventManager removeEventHandlerForEventClass:kCoreEventClass andEventID:kAEQuitApplication]; + //[eventManager removeEventHandlerForEventClass:kCoreEventClass andEventID:kAEQuitApplication]; [eventManager removeEventHandlerForEventClass:kInternetEventClass andEventID:kAEGetURL]; }