removed namespaces

This commit is contained in:
fourtf
2018-06-26 17:06:17 +02:00
parent 2df0566492
commit 54eb07e116
132 changed files with 805 additions and 823 deletions
+4 -4
View File
@@ -11,18 +11,18 @@ namespace chatterino {
class BTTVEmotes
{
public:
util::EmoteMap globalEmotes;
EmoteMap globalEmotes;
SignalVector<QString> globalEmoteCodes;
util::EmoteMap channelEmotes;
EmoteMap channelEmotes;
std::map<QString, SignalVector<QString>> channelEmoteCodes;
void loadGlobalEmotes();
void loadChannelEmotes(const QString &channelName,
std::weak_ptr<util::EmoteMap> channelEmoteMap);
std::weak_ptr<EmoteMap> channelEmoteMap);
private:
util::EmoteMap channelEmoteCache;
EmoteMap channelEmoteCache;
};
} // namespace chatterino