Remove unused std::string version of CompletionModel addString

This commit is contained in:
Rasmus Karlsson 2018-06-07 13:10:14 +02:00
parent 9f2c4ab59a
commit d2e750129c
2 changed files with 0 additions and 6 deletions

View file

@ -79,11 +79,6 @@ void CompletionModel::refresh()
// }
}
void CompletionModel::addString(const std::string &str, TaggedString::Type type)
{
this->addString(qS(str), type);
}
void CompletionModel::addString(const QString &str, TaggedString::Type type)
{
std::lock_guard<std::mutex> lock(this->emotesMutex);

View file

@ -117,7 +117,6 @@ public:
}
void refresh();
void addString(const std::string &str, TaggedString::Type type);
void addString(const QString &str, TaggedString::Type type);
void addUser(const QString &str);