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
+5 -5
View File
@@ -17,10 +17,10 @@ class TwitchEmotes
public:
TwitchEmotes();
util::EmoteData getEmoteById(const QString &id, const QString &emoteName);
EmoteData getEmoteById(const QString &id, const QString &emoteName);
/// Twitch emotes
void refresh(const std::shared_ptr<providers::twitch::TwitchAccount> &user);
void refresh(const std::shared_ptr<TwitchAccount> &user);
struct TwitchEmote {
TwitchEmote(const QString &_id, const QString &_code)
@@ -50,7 +50,7 @@ public:
std::vector<QString> emoteCodes;
util::EmoteMap emotes;
EmoteMap emotes;
bool filled = false;
};
@@ -62,10 +62,10 @@ private:
void loadSetData(std::shared_ptr<TwitchEmotes::EmoteSet> emoteSet);
// emote code
util::ConcurrentMap<QString, providers::twitch::EmoteValue *> _twitchEmotes;
ConcurrentMap<QString, EmoteValue *> _twitchEmotes;
// emote id
util::ConcurrentMap<QString, util::EmoteData> _twitchEmoteFromCache;
ConcurrentMap<QString, EmoteData> _twitchEmoteFromCache;
};
} // namespace chatterino