diff options
author | Erik Kundiman <erik@megapahit.org> | 2024-10-22 13:42:22 +0800 |
---|---|---|
committer | Erik Kundiman <erik@megapahit.org> | 2024-10-22 16:49:53 +0800 |
commit | 35ee215d68c891bcbf3fd64709f000c0a8e7f597 (patch) | |
tree | b045e073dc7b14d37ef1b4d30566b84f085c3cee /indra/llui/llview.cpp | |
parent | 705230a26ed4c33af2d3af07c160386ded740079 (diff) |
Revert "First attempt to fix unicode input"
This reverts commit aaa8cb5a37a720ff67792d0a31fec793b03b3742.
Diffstat (limited to 'indra/llui/llview.cpp')
-rw-r--r-- | indra/llui/llview.cpp | 19 |
1 files changed, 0 insertions, 19 deletions
diff --git a/indra/llui/llview.cpp b/indra/llui/llview.cpp index cead5b5956..7d6c937b85 100644 --- a/indra/llui/llview.cpp +++ b/indra/llui/llview.cpp @@ -1080,31 +1080,12 @@ bool LLView::handleUnicodeChar(llwchar uni_char, bool called_from_parent) return handled; } -bool LLView::handleUnicodeString(char *uni_str, bool called_from_parent) -{ - auto handled = FALSE; - - if (getVisible() && getEnabled() && !handled) { - handled = handleUnicodeStringHere(uni_str); - if (handled && LLView::sDebugKeys) - LL_INFOS() << "Unicode key handled by " << getName() << LL_ENDL; - } - - if (!handled && !called_from_parent && mParentView) - handled = mParentView->handleUnicodeString(uni_str, FALSE); - - return handled; -} bool LLView::handleUnicodeCharHere(llwchar uni_char ) { return false; } -bool LLView::handleUnicodeStringHere(char *uni_str) -{ - return FALSE; -} bool LLView::handleDragAndDrop(S32 x, S32 y, MASK mask, bool drop, EDragAndDropType cargo_type, void* cargo_data, |