refactored irc

This commit is contained in:
fourtf
2018-02-05 15:11:50 +01:00
parent 12b30eb2ed
commit b351c40d29
56 changed files with 1397 additions and 1154 deletions
+3 -3
View File
@@ -16,11 +16,11 @@ class CompletionManager
public:
static CompletionManager &getInstance();
CompletionModel *createModel(const std::string &channelName);
CompletionModel *createModel(const QString &channelName);
private:
std::map<std::string, CompletionModel *> models;
std::map<QString, CompletionModel *> models;
};
} // namespace singletons
} // namespace chatterino
}