summaryrefslogtreecommitdiff
path: root/indra/llui/lluistring.h
diff options
context:
space:
mode:
authorAlexander Gavriliuk <alexandrgproductengine@lindenlab.com>2023-07-28 18:42:57 +0200
committerGuru <alexandrgproductengine@lindenlab.com>2023-07-28 22:29:01 +0200
commit264d9c32d9e04df0ceeaf2a63f6872aad29dd46a (patch)
treea70e1acb3d22d9bb980997b53d3c391653f73249 /indra/llui/lluistring.h
parentc5d7f3c4c1cf37ca0e68bbe9830bd3f3931476e5 (diff)
SL-20088 EmojiPicker - replace the image on the activation button with an emoji
Diffstat (limited to 'indra/llui/lluistring.h')
-rw-r--r--indra/llui/lluistring.h1
1 files changed, 1 insertions, 0 deletions
diff --git a/indra/llui/lluistring.h b/indra/llui/lluistring.h
index 07e02de6d8..b1089a3903 100644
--- a/indra/llui/lluistring.h
+++ b/indra/llui/lluistring.h
@@ -61,6 +61,7 @@ public:
LLUIString() : mArgs(NULL), mNeedsResult(false), mNeedsWResult(false) {}
LLUIString(const std::string& instring, const LLStringUtil::format_map_t& args);
LLUIString(const std::string& instring) : mArgs(NULL) { assign(instring); }
+ LLUIString(const LLWString& instring) : mArgs(NULL) { insert(0, instring); }
~LLUIString() { delete mArgs; }
void assign(const std::string& instring);