diff options
| author | Graham Madarasz (Graham Linden) <graham@lindenlab.com> | 2013-11-08 10:11:22 -0800 | 
|---|---|---|
| committer | Graham Madarasz (Graham Linden) <graham@lindenlab.com> | 2013-11-08 10:11:22 -0800 | 
| commit | 19b2655a48696103fbccecbb0a672a9864980459 (patch) | |
| tree | 8fd1d4eda6a1b0bfbb83a913fc7a42ba9e32d75e /indra | |
| parent | 9ad67587b776fc9e8727ad6b79ed328cccbfbf93 (diff) | |
MAINT-3155 redux moved reg for URL event handling to WillFinishLaunching instead of DidFinishLaunching while laughing at Apple
Diffstat (limited to 'indra')
| -rw-r--r-- | indra/newview/llappdelegate-objc.mm | 7 | 
1 files changed, 6 insertions, 1 deletions
| diff --git a/indra/newview/llappdelegate-objc.mm b/indra/newview/llappdelegate-objc.mm index 91251ed7c0..988058aad3 100644 --- a/indra/newview/llappdelegate-objc.mm +++ b/indra/newview/llappdelegate-objc.mm @@ -40,6 +40,11 @@      [super dealloc];  } +- (void) applicationWillFinishLaunching:(NSNotification *)notification +{ +    [[NSAppleEventManager sharedAppleEventManager] setEventHandler:self andSelector:@selector(handleGetURLEvent:withReplyEvent:) forEventClass:kInternetEventClass andEventID:kAEGetURL]; +} +  - (void) applicationDidFinishLaunching:(NSNotification *)notification  {  	frameTimer = nil; @@ -55,7 +60,7 @@  	[[NSNotificationCenter defaultCenter] addObserver:self selector:@selector(languageUpdated) name:@"NSTextInputContextKeyboardSelectionDidChangeNotification" object:nil]; -    [[NSAppleEventManager sharedAppleEventManager] setEventHandler:self andSelector:@selector(handleGetURLEvent:withReplyEvent:) forEventClass:kInternetEventClass andEventID:kAEGetURL]; + //   [[NSAppleEventManager sharedAppleEventManager] setEventHandler:self andSelector:@selector(handleGetURLEvent:withReplyEvent:) forEventClass:kInternetEventClass andEventID:kAEGetURL];  }  - (void) handleGetURLEvent:(NSAppleEventDescriptor *)event withReplyEvent:(NSAppleEventDescriptor *)replyEvent { | 
