mirror of
https://github.com/crystalidea/qt-build-tools.git
synced 2024-11-23 03:10:06 +08:00
5.12.3: fix for https://bugreports.qt.io/browse/QTBUG-18624
This commit is contained in:
parent
d485017587
commit
5a41ce5e2d
@ -227,10 +227,10 @@ QT_USE_NAMESPACE
|
|||||||
application depends on.
|
application depends on.
|
||||||
*/
|
*/
|
||||||
NSAppleEventManager *eventManager = [NSAppleEventManager sharedAppleEventManager];
|
NSAppleEventManager *eventManager = [NSAppleEventManager sharedAppleEventManager];
|
||||||
[eventManager setEventHandler:self
|
/*[eventManager setEventHandler:self
|
||||||
andSelector:@selector(appleEventQuit:withReplyEvent:)
|
andSelector:@selector(appleEventQuit:withReplyEvent:)
|
||||||
forEventClass:kCoreEventClass
|
forEventClass:kCoreEventClass
|
||||||
andEventID:kAEQuitApplication];
|
andEventID:kAEQuitApplication];*/
|
||||||
[eventManager setEventHandler:self
|
[eventManager setEventHandler:self
|
||||||
andSelector:@selector(getUrl:withReplyEvent:)
|
andSelector:@selector(getUrl:withReplyEvent:)
|
||||||
forEventClass:kInternetEventClass
|
forEventClass:kInternetEventClass
|
||||||
@ -241,7 +241,7 @@ QT_USE_NAMESPACE
|
|||||||
- (void)removeAppleEventHandlers
|
- (void)removeAppleEventHandlers
|
||||||
{
|
{
|
||||||
NSAppleEventManager *eventManager = [NSAppleEventManager sharedAppleEventManager];
|
NSAppleEventManager *eventManager = [NSAppleEventManager sharedAppleEventManager];
|
||||||
[eventManager removeEventHandlerForEventClass:kCoreEventClass andEventID:kAEQuitApplication];
|
//[eventManager removeEventHandlerForEventClass:kCoreEventClass andEventID:kAEQuitApplication];
|
||||||
[eventManager removeEventHandlerForEventClass:kInternetEventClass andEventID:kAEGetURL];
|
[eventManager removeEventHandlerForEventClass:kInternetEventClass andEventID:kAEGetURL];
|
||||||
}
|
}
|
||||||
|
|
||||||
|
Loading…
Reference in New Issue
Block a user