summaryrefslogtreecommitdiff
path: root/indra/llui/llemojidictionary.h
diff options
context:
space:
mode:
authorAlexander Gavriliuk <gavriliuk@gmail.com>2023-05-18 07:47:54 +0200
committerGuru <alexandrgproductengine@lindenlab.com>2023-05-18 13:45:34 +0200
commitbb97f3bf03cfa776b09dc2c0929fbb100a11c775 (patch)
treed711a8c308ed13e069c54c41702333233464a87c /indra/llui/llemojidictionary.h
parent347c804bfe53b400420e943d9084f088ae7e1c63 (diff)
SL-19575 Create emoji gallery (use ::value_type in LLEmojiDictionary typedefs)
Diffstat (limited to 'indra/llui/llemojidictionary.h')
-rw-r--r--indra/llui/llemojidictionary.h6
1 files changed, 3 insertions, 3 deletions
diff --git a/indra/llui/llemojidictionary.h b/indra/llui/llemojidictionary.h
index cc26f75ea3..1507ebfad3 100644
--- a/indra/llui/llemojidictionary.h
+++ b/indra/llui/llemojidictionary.h
@@ -57,11 +57,11 @@ class LLEmojiDictionary : public LLParamSingleton<LLEmojiDictionary>, public LLI
public:
typedef std::map<llwchar, const LLEmojiDescriptor*> emoji2descr_map_t;
- typedef std::pair<llwchar, const LLEmojiDescriptor*> emoji2descr_item_t;
+ typedef emoji2descr_map_t::value_type emoji2descr_item_t;
typedef std::map<std::string, const LLEmojiDescriptor*> code2descr_map_t;
- typedef std::pair<std::string, const LLEmojiDescriptor*> code2descr_item_t;
+ typedef code2descr_map_t::value_type code2descr_item_t;
typedef std::map<std::string, std::vector<const LLEmojiDescriptor*>> cat2descrs_map_t;
- typedef std::pair<std::string, std::vector<const LLEmojiDescriptor*>> cat2descrs_item_t;
+ typedef cat2descrs_map_t::value_type cat2descrs_item_t;
static void initClass();
LLWString findMatchingEmojis(const std::string& needle) const;