X-Git-Url: https://git.quassel-irc.org/?p=quassel.git;a=blobdiff_plain;f=src%2Fclient%2Fclientuserinputhandler.cpp;h=6b4668242588ed66d2b622a204a61611c4eda9cb;hp=bddd5c7c947b8e7821cd543bcc961bf9cebfd531;hb=e8a39b4c3c92e193ab861a3fea84a261bb6fbd24;hpb=9f5158eab420977b42d8fc6b98d2eb0de66cbaa4 diff --git a/src/client/clientuserinputhandler.cpp b/src/client/clientuserinputhandler.cpp index bddd5c7c..6b466824 100644 --- a/src/client/clientuserinputhandler.cpp +++ b/src/client/clientuserinputhandler.cpp @@ -1,5 +1,5 @@ /*************************************************************************** - * Copyright (C) 2005-2016 by the Quassel Project * + * Copyright (C) 2005-2018 by the Quassel Project * * devel@quassel-irc.org * * * * This program is free software; you can redistribute it and/or modify * @@ -64,7 +64,7 @@ void ClientUserInputHandler::handleUserInput(const BufferInfo &bufferInfo, const if (!msg.startsWith('/')) { if (_nickRx.indexIn(msg) == 0) { const Network *net = Client::network(bufferInfo.networkId()); - IrcUser *user = net ? net->ircUser(_nickRx.cap(1)) : 0; + IrcUser *user = net ? net->ircUser(_nickRx.cap(1)) : nullptr; if (user) user->setLastSpokenTo(bufferInfo.bufferId(), QDateTime::currentDateTime().toUTC()); } @@ -121,7 +121,7 @@ void ClientUserInputHandler::handleQuery(const BufferInfo &bufferInfo, const QSt void ClientUserInputHandler::handleIgnore(const BufferInfo &bufferInfo, const QString &text) { if (text.isEmpty()) { - emit Client::instance()->showIgnoreList(""); + emit Client::instance()->displayIgnoreList(""); return; } // If rule contains no ! or @, we assume it is just a nickname, and turn it into an ignore rule for that nick @@ -140,6 +140,12 @@ void ClientUserInputHandler::handleIgnore(const BufferInfo &bufferInfo, const QS ); } +void ClientUserInputHandler::handleList(const BufferInfo &bufferInfo, const QString &text) +{ + // Pass along any potential search parameters, list channels immediately + Client::instance()->displayChannelList(bufferInfo.networkId(), text, true); +} + void ClientUserInputHandler::switchBuffer(const NetworkId &networkId, const QString &bufferName) {