diff options
author | Geenz <geenz@geenzo.com> | 2013-01-23 09:29:32 -0500 |
---|---|---|
committer | Geenz <geenz@geenzo.com> | 2013-01-23 09:29:32 -0500 |
commit | c52e6f9c597c67637045134d808a9039f85efc5c (patch) | |
tree | 60b7d1eaf6199046cbec99e568b95e1e577b7c36 /indra/newview/llappdelegate-objc.mm | |
parent | 7ead8fceeb84f984aa5c363e058d274984bfb03c (diff) |
Refactor the key input handling to make it easier to filter out keys we don't need unicode characters for (such as the arrow keys).
Diffstat (limited to 'indra/newview/llappdelegate-objc.mm')
-rw-r--r-- | indra/newview/llappdelegate-objc.mm | 10 |
1 files changed, 10 insertions, 0 deletions
diff --git a/indra/newview/llappdelegate-objc.mm b/indra/newview/llappdelegate-objc.mm index f5143d7578..9bb10f3204 100644 --- a/indra/newview/llappdelegate-objc.mm +++ b/indra/newview/llappdelegate-objc.mm @@ -29,6 +29,16 @@ } } +- (void) applicationDidBecomeActive:(NSNotification *)notification +{ + +} + +- (void) applicationDidResignActive:(NSNotification *)notification +{ + +} + - (NSApplicationDelegateReply) applicationShouldTerminate:(NSApplication *)sender { if (!runMainLoop()) |