diff options
| author | Logan Dethrow <log@lindenlab.com> | 2011-10-04 10:38:58 -0400 |
|---|---|---|
| committer | Logan Dethrow <log@lindenlab.com> | 2011-10-04 10:38:58 -0400 |
| commit | bf7e1bb2d2b78d5f49c8c2276308646ce4854a29 (patch) | |
| tree | 3036fa9bd43b3a769c7854ce212780b6b1202356 /indra/llui/llscrollcontainer.cpp | |
| parent | 1ead58914837f12e943ff1db4b71cd3ed379d01c (diff) | |
| parent | d0e36ade5bb16e9e5a6aca9ee4f02fbe995cdfd8 (diff) | |
Merged
Diffstat (limited to 'indra/llui/llscrollcontainer.cpp')
| -rw-r--r-- | indra/llui/llscrollcontainer.cpp | 9 |
1 files changed, 9 insertions, 0 deletions
diff --git a/indra/llui/llscrollcontainer.cpp b/indra/llui/llscrollcontainer.cpp index b44b4c36b6..fe3f688fc5 100644 --- a/indra/llui/llscrollcontainer.cpp +++ b/indra/llui/llscrollcontainer.cpp @@ -223,6 +223,15 @@ BOOL LLScrollContainer::handleKeyHere(KEY key, MASK mask) return FALSE; } +BOOL LLScrollContainer::handleUnicodeCharHere(llwchar uni_char) +{ + if (mScrolledView && mScrolledView->handleUnicodeCharHere(uni_char)) + { + return TRUE; + } + return FALSE; +} + BOOL LLScrollContainer::handleScrollWheel( S32 x, S32 y, S32 clicks ) { // Give event to my child views - they may have scroll bars |
