X-Git-Url: https://git.quassel-irc.org/?p=quassel.git;a=blobdiff_plain;f=src%2Fcore%2Fircparser.cpp;h=7811e05de38a80c07f643ed7b54a2cb3c97c9bef;hp=260e80b1f557a17c6431840eb6972a5910a699dc;hb=a5ee21025ec613dc128ceb78a7e5fcd0f353275e;hpb=283fdb2c49e5efa1d497d8c3e6f624f86d008ff8 diff --git a/src/core/ircparser.cpp b/src/core/ircparser.cpp index 260e80b1..7811e05d 100644 --- a/src/core/ircparser.cpp +++ b/src/core/ircparser.cpp @@ -56,6 +56,9 @@ QByteArray IrcParser::decrypt(Network *network, const QString &bufferName, const return isTopic? cipher->decryptTopic(message) : cipher->decrypt(message); #else + Q_UNUSED(network); + Q_UNUSED(bufferName); + Q_UNUSED(isTopic); return message; #endif } @@ -213,7 +216,7 @@ void IrcParser::processNetworkIncoming(NetworkDataEvent *e) { if(!net->isChannelName(target)) target = nickFromMask(prefix); } - events << new IrcEventRawMessage(EventManager::IrcEventRawNotice, net, msg, prefix, target, e->timestamp()); + events << new IrcEventRawMessage(EventManager::IrcEventRawNotice, net, params[1], prefix, target, e->timestamp()); } } break;