Cleaned some stuff up and did some things

This commit is contained in:
apa420
2018-08-12 21:05:12 +02:00
parent 320558ee63
commit 93bbe33664
6 changed files with 13 additions and 47 deletions
@@ -11,9 +11,8 @@ class Paths;
class NotificationModel;
enum class Platform : uint8_t {
Twitch = 0, // 0
Mixer = 1, // 1
HitBox = 2, // 2
Twitch, // 0
// Mixer, // 1
};
class NotificationController final : public Singleton
@@ -31,8 +30,6 @@ public:
UnsortedSignalVector<QString> getVector(Platform p);
std::map<Platform, UnsortedSignalVector<QString>> channelMap;
// UnsortedSignalVector<QString> twitchVector;
// UnsortedSignalVector<QString> mixerVector;
NotificationModel *createModel(QObject *parent, Platform p);
@@ -40,8 +37,10 @@ private:
bool initialized_ = false;
ChatterinoSetting<std::vector<QString>> twitchSetting_ = {
"/notifications/twitch"};
/*
ChatterinoSetting<std::vector<QString>> mixerSetting_ = {
"/notifications/mixer"};
*/
};
} // namespace chatterino