diff options
author | Lars Næsbye Christensen <lars@naesbye.dk> | 2023-07-21 00:25:07 +0200 |
---|---|---|
committer | Lars Næsbye Christensen <lars@naesbye.dk> | 2023-07-21 00:25:07 +0200 |
commit | fbc4c9e31fd80a721767f0bb3c32df5bce7a149a (patch) | |
tree | 4d9389fa070b94b04d3ecfc3255d3811667bbef3 /indra/llplugin | |
parent | ec4135da63a3f3877222fba4ecb59b15650371fe (diff) |
replaces deprecated (since 10.12) reference to NSAnyEventMask with the replacement NSEventMaskAny. Functionality unaltered.
Diffstat (limited to 'indra/llplugin')
-rw-r--r-- | indra/llplugin/slplugin/slplugin-objc.mm | 2 |
1 files changed, 1 insertions, 1 deletions
diff --git a/indra/llplugin/slplugin/slplugin-objc.mm b/indra/llplugin/slplugin/slplugin-objc.mm index a5ab1d95c8..68ff196eaf 100644 --- a/indra/llplugin/slplugin/slplugin-objc.mm +++ b/indra/llplugin/slplugin/slplugin-objc.mm @@ -95,7 +95,7 @@ void LLCocoaPlugin::processEvents() { // Some plugins (webkit at least) will want an event loop. This qualifies. NSEvent * event; - event = [NSApp nextEventMatchingMask:NSAnyEventMask untilDate:[NSDate distantPast] inMode:NSDefaultRunLoopMode dequeue:YES]; + event = [NSApp nextEventMatchingMask:NSEventMaskAny untilDate:[NSDate distantPast] inMode:NSDefaultRunLoopMode dequeue:YES]; [NSApp sendEvent: event]; } |