summaryrefslogtreecommitdiff
path: root/indra/llui/lluistring.cpp
diff options
context:
space:
mode:
authorAndrey Kleshchev <andreykproductengine@lindenlab.com>2024-12-09 20:18:37 +0200
committerAndrey Kleshchev <117672381+akleshchev@users.noreply.github.com>2024-12-09 23:06:21 +0200
commitc162d8a060e9b48a7945eb0b1bdafbff959b7faf (patch)
treead605795ded21d6ea81b054696c93dd200f54ac4 /indra/llui/lluistring.cpp
parent412b3db5a877eab977346e3f30464d5745afd69b (diff)
#3222 Emoji tabs losing symbols
Diffstat (limited to 'indra/llui/lluistring.cpp')
-rw-r--r--indra/llui/lluistring.cpp6
1 files changed, 6 insertions, 0 deletions
diff --git a/indra/llui/lluistring.cpp b/indra/llui/lluistring.cpp
index bfadeb8428..ab6de16639 100644
--- a/indra/llui/lluistring.cpp
+++ b/indra/llui/lluistring.cpp
@@ -47,6 +47,12 @@ void LLUIString::assign(const std::string& s)
dirty();
}
+void LLUIString::assign(const LLWString& instring)
+{
+ mOrig = wstring_to_utf8str(instring);
+ dirty();
+}
+
void LLUIString::setArgList(const LLStringUtil::format_map_t& args)
{