renamed *Manager files

This commit is contained in:
fourtf
2018-06-28 19:46:45 +02:00
parent 5604ae6a67
commit 2df142bd50
80 changed files with 125 additions and 125 deletions
+28
View File
@@ -0,0 +1,28 @@
#include "singletons/Emotes.hpp"
#include "Application.hpp"
#include "controllers/accounts/AccountController.hpp"
namespace chatterino {
void EmoteManager::initialize()
{
getApp()->accounts->twitch.currentUserChanged.connect([this] {
auto currentUser = getApp()->accounts->twitch.getCurrent();
assert(currentUser);
this->twitch.refresh(currentUser);
});
this->emojis.load();
this->bttv.loadGlobalEmotes();
this->ffz.loadGlobalEmotes();
this->gifTimer.initialize();
}
bool EmoteManager::isIgnoredEmote(const QString &)
{
return false;
}
} // namespace chatterino