summaryrefslogtreecommitdiff
path: root/indra/llui/llview.h
diff options
context:
space:
mode:
authorErik Kundiman <erik@megapahit.org>2024-02-22 08:38:12 +0800
committerErik Kundiman <erik@megapahit.org>2024-02-22 08:38:12 +0800
commit60592ae0d7a98e071e516fcac70c5bf1427f20be (patch)
tree270a0d44f14634f7519ba222bee6203d7ed4c6e8 /indra/llui/llview.h
parent15e0231006838044b0315c19ed6a1b67a1da8e75 (diff)
IME composition is now replaced by the result
instead of being printed alongside. For now, it always gets reset from the start after pressing Return, which is to be fixed next.
Diffstat (limited to 'indra/llui/llview.h')
-rw-r--r--indra/llui/llview.h4
1 files changed, 2 insertions, 2 deletions
diff --git a/indra/llui/llview.h b/indra/llui/llview.h
index 4e101adecb..f455120db4 100644
--- a/indra/llui/llview.h
+++ b/indra/llui/llview.h
@@ -382,7 +382,7 @@ public:
/* virtual */ BOOL handleKey(KEY key, MASK mask, BOOL called_from_parent);
/* virtual */ BOOL handleKeyUp(KEY key, MASK mask, BOOL called_from_parent);
/* virtual */ BOOL handleUnicodeChar(llwchar uni_char, BOOL called_from_parent);
- /* virtual */ BOOL handleUnicodeString(char *uni_str, BOOL called_from_parent);
+ /* virtual */ BOOL handleUnicodeString(char *uni_str, bool editing, BOOL called_from_parent);
virtual BOOL handleDragAndDrop(S32 x, S32 y, MASK mask, BOOL drop,
EDragAndDropType cargo_type,
@@ -516,7 +516,7 @@ public:
virtual BOOL handleKeyHere(KEY key, MASK mask);
virtual BOOL handleKeyUpHere(KEY key, MASK mask);
virtual BOOL handleUnicodeCharHere(llwchar uni_char);
- virtual BOOL handleUnicodeStringHere(char *uni_str);
+ virtual BOOL handleUnicodeStringHere(char *uni_str, bool editing);
virtual void handleReshape(const LLRect& rect, bool by_user);
virtual void dirtyRect();