X-Git-Url: https://git.quassel-irc.org/?p=quassel.git;a=blobdiff_plain;f=src%2Fcore%2Fcoresession.cpp;h=39bd69b7f856f59bca4ca49abeb447998edfc7d7;hp=43b2234d87ac6c3a404d51ab0643c2d0cedb9eb0;hb=96d275205b16280f8b938ab7f54d62c51fad358c;hpb=41686743dca5b254a6f53a4a9e8f8b8d91acd041 diff --git a/src/core/coresession.cpp b/src/core/coresession.cpp index 43b2234d..39bd69b7 100644 --- a/src/core/coresession.cpp +++ b/src/core/coresession.cpp @@ -670,7 +670,7 @@ void CoreSession::clientsDisconnected() } -void CoreSession::globalAway(const QString &msg) +void CoreSession::globalAway(const QString &msg, const bool skipFormatting) { QHash::iterator netIter = _networks.begin(); CoreNetwork *net = 0; @@ -681,7 +681,7 @@ void CoreSession::globalAway(const QString &msg) if (!net->isConnected()) continue; - net->userInputHandler()->issueAway(msg, false /* no force away */); + net->userInputHandler()->issueAway(msg, false /* no force away */, skipFormatting); } }