diff options
Diffstat (limited to 'indra/llui/llemojidictionary.h')
-rw-r--r-- | indra/llui/llemojidictionary.h | 3 |
1 files changed, 3 insertions, 0 deletions
diff --git a/indra/llui/llemojidictionary.h b/indra/llui/llemojidictionary.h index cbb0ac577d..88ff5b8300 100644 --- a/indra/llui/llemojidictionary.h +++ b/indra/llui/llemojidictionary.h @@ -57,8 +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 std::map<std::string, const LLEmojiDescriptor*> code2descr_map_t; + typedef std::pair<std::string, const LLEmojiDescriptor*> 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; static void initClass(); LLWString findMatchingEmojis(const std::string& needle) const; |