mirror of
https://github.com/Chatterino/chatterino2.git
synced 2024-11-21 22:24:07 +01:00
fix compile error
This commit is contained in:
parent
4b36893818
commit
d8db695628
2 changed files with 6 additions and 0 deletions
|
@ -161,6 +161,11 @@ EmoteMap &EmoteManager::getBTTVChannelEmoteFromCaches()
|
||||||
return _bttvChannelEmoteFromCaches;
|
return _bttvChannelEmoteFromCaches;
|
||||||
}
|
}
|
||||||
|
|
||||||
|
EmoteMap &EmoteManager::getEmojis()
|
||||||
|
{
|
||||||
|
return this->emojis;
|
||||||
|
}
|
||||||
|
|
||||||
ConcurrentMap<int, EmoteData> &EmoteManager::getFFZChannelEmoteFromCaches()
|
ConcurrentMap<int, EmoteData> &EmoteManager::getFFZChannelEmoteFromCaches()
|
||||||
{
|
{
|
||||||
return _ffzChannelEmoteFromCaches;
|
return _ffzChannelEmoteFromCaches;
|
||||||
|
|
|
@ -54,6 +54,7 @@ public:
|
||||||
EmoteMap &getFFZEmotes();
|
EmoteMap &getFFZEmotes();
|
||||||
EmoteMap &getChatterinoEmotes();
|
EmoteMap &getChatterinoEmotes();
|
||||||
EmoteMap &getBTTVChannelEmoteFromCaches();
|
EmoteMap &getBTTVChannelEmoteFromCaches();
|
||||||
|
EmoteMap &getEmojis();
|
||||||
ConcurrentMap<int, EmoteData> &getFFZChannelEmoteFromCaches();
|
ConcurrentMap<int, EmoteData> &getFFZChannelEmoteFromCaches();
|
||||||
ConcurrentMap<long, EmoteData> &getTwitchEmoteFromCache();
|
ConcurrentMap<long, EmoteData> &getTwitchEmoteFromCache();
|
||||||
|
|
||||||
|
|
Loading…
Reference in a new issue