X-Git-Url: https://git.quassel-irc.org/?p=quassel.git;a=blobdiff_plain;f=src%2Fclient%2Fmessagefilter.cpp;h=bf86a3bf41f351f5145a4833f889af80d8da0f11;hp=4ee6b16accb4e177bf85a87eff735c4453c0f71c;hb=568045799b7f6e746381b4b3d34a2f47b5433e82;hpb=9ce42695baef3bdd6f61aaff23c4b59061e46fe6 diff --git a/src/client/messagefilter.cpp b/src/client/messagefilter.cpp index 4ee6b16a..bf86a3bf 100644 --- a/src/client/messagefilter.cpp +++ b/src/client/messagefilter.cpp @@ -32,7 +32,7 @@ QString MessageFilter::idString() const { if(_bufferList.isEmpty()) return "*"; QString idstr; QStringList bufids; - foreach(BufferId id, _bufferList) bufids << QString(id.toInt()); + foreach(BufferId id, _bufferList) bufids << QString::number(id.toInt()); bufids.sort(); foreach(QString id, bufids) idstr += id + '|'; idstr.chop(1);