This commit is contained in:
kleuter 2017-01-11 18:13:33 +01:00
parent 9722a392e4
commit 15443a4cab

View File

@ -262,10 +262,10 @@ QT_END_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
@ -276,7 +276,7 @@ QT_END_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];
} }