mirror of
https://github.com/Chatterino/chatterino2.git
synced 2024-11-13 19:49:51 +01:00
Remove unused std::string version of CompletionModel addString
This commit is contained in:
parent
9f2c4ab59a
commit
d2e750129c
|
@ -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);
|
||||
|
|
|
@ -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);
|
||||
|
|
Loading…
Reference in a new issue