summaryrefslogtreecommitdiff
path: root/indra/newview/llfloateremojipicker.cpp
diff options
context:
space:
mode:
authorAlexander Gavriliuk <alexandrgproductengine@lindenlab.com>2023-09-08 01:02:06 +0200
committerAlexander Gavriliuk <alexandrgproductengine@lindenlab.com>2023-09-08 01:02:06 +0200
commitc30208d598d43779cea7b5de50c44d4b21b16487 (patch)
treeb1ffdbac63d73bc66a89a259f86edb18b4039832 /indra/newview/llfloateremojipicker.cpp
parentd8cc5688eff5b540f8653a1bc39e0644b1da8d03 (diff)
SL-19951 Organize emoji categories in groups (fix for German)
Diffstat (limited to 'indra/newview/llfloateremojipicker.cpp')
-rw-r--r--indra/newview/llfloateremojipicker.cpp6
1 files changed, 2 insertions, 4 deletions
diff --git a/indra/newview/llfloateremojipicker.cpp b/indra/newview/llfloateremojipicker.cpp
index eea9c685b3..d24f627cdf 100644
--- a/indra/newview/llfloateremojipicker.cpp
+++ b/indra/newview/llfloateremojipicker.cpp
@@ -534,10 +534,9 @@ void LLFloaterEmojiPicker::fillEmojis(bool fromResize)
for (const LLEmojiGroup& group : groups)
{
// List all categories in group
- for (std::string category : group.Categories)
+ for (const std::string& category : group.Categories)
{
// List all emojis in category
- LLStringUtil::toLower(category);
const LLEmojiDictionary::cat2descrs_map_t::const_iterator& item = category2Descr.find(category);
if (item != category2Descr.end())
{
@@ -549,10 +548,9 @@ void LLFloaterEmojiPicker::fillEmojis(bool fromResize)
else
{
// List all categories in the selected group
- for (std::string category : groups[sSelectedGroupIndex].Categories)
+ for (const std::string& category : groups[sSelectedGroupIndex].Categories)
{
// List all emojis in category
- LLStringUtil::toLower(category);
const LLEmojiDictionary::cat2descrs_map_t::const_iterator& item = category2Descr.find(category);
if (item != category2Descr.end())
{