diff options
author | Kelly Washington <kelly@lindenlab.com> | 2010-09-24 16:31:43 -0700 |
---|---|---|
committer | Kelly Washington <kelly@lindenlab.com> | 2010-09-24 16:31:43 -0700 |
commit | f3b01596ddde08a178276fadc44f430928582748 (patch) | |
tree | 16561df07a203748295fd0505d142e9c551624b3 /indra/llui/llview.h | |
parent | 0931799f03df4a0d573cc9162f1a81f6e3222d3b (diff) |
VWR-21377 Script editor ctrl-f fix.
change to better / more consistent naming
Diffstat (limited to 'indra/llui/llview.h')
-rw-r--r-- | indra/llui/llview.h | 8 |
1 files changed, 4 insertions, 4 deletions
diff --git a/indra/llui/llview.h b/indra/llui/llview.h index 706858e65c..33d345beff 100644 --- a/indra/llui/llview.h +++ b/indra/llui/llview.h @@ -273,10 +273,10 @@ public: BOOL focusNextRoot(); BOOL focusPrevRoot(); - // Normally we want the app menus to get priority on modified keys - // However, if this item claims to have menus then we want to give - // it first chance at handling them. (eg. the script editor) - virtual bool hasMenus() const { return false; }; + // Normally we want the app menus to get priority on accelerated keys + // However, sometimes we want to give specific views a first chance + // iat handling them. (eg. the script editor) + virtual bool hasAccelerators() const { return false; }; // delete all children. Override this function if you need to // perform any extra clean up such as cached pointers to selected |