X-Git-Url: https://git.quassel-irc.org/?a=blobdiff_plain;f=src%2Fcore%2Fcorebasichandler.cpp;h=dfa8a9964268839d0092bc9e3bb2161801d546fa;hb=446caa053a85a00ef1f2ed393b5a0da761d6f2d1;hp=c08b1c737aad30b00b11c7d5fc0a65be138e1d46;hpb=9fc57dc2c000e80fb8bd746a090e2e8210e1278e;p=quassel.git diff --git a/src/core/corebasichandler.cpp b/src/core/corebasichandler.cpp index c08b1c73..dfa8a996 100644 --- a/src/core/corebasichandler.cpp +++ b/src/core/corebasichandler.cpp @@ -1,5 +1,5 @@ /*************************************************************************** - * Copyright (C) 2005-2013 by the Quassel Project * + * Copyright (C) 2005-2015 by the Quassel Project * * devel@quassel-irc.org * * * * This program is free software; you can redistribute it and/or modify * @@ -145,18 +145,3 @@ void CoreBasicHandler::putCmd(const QString &cmd, const QByteArray ¶m, const list << param; emit putCmd(cmd, list, prefix); } - - -void CoreBasicHandler::displayMsg(Message::Type msgType, QString target, const QString &text, const QString &sender, Message::Flags flags) -{ - IrcChannel *channel = network()->ircChannel(target); - if (!channel) { - if (!target.isEmpty() && network()->prefixes().contains(target[0])) - target = target.mid(1); - - if (target.startsWith('$') || target.startsWith('#')) - target = nickFromMask(sender); - } - - emit displayMsg(msgType, typeByTarget(target), target, text, sender, flags); -}