From d357030175ec6ca1152d51393da6e178b967a5e5 Mon Sep 17 00:00:00 2001 From: Marcus Eggenberger Date: Tue, 5 Feb 2008 13:44:31 +0000 Subject: [PATCH 1/1] fixed a bug in UserInputHandler::handleMsg() --- src/core/userinputhandler.cpp | 2 +- version.inc | 2 +- 2 files changed, 2 insertions(+), 2 deletions(-) diff --git a/src/core/userinputhandler.cpp b/src/core/userinputhandler.cpp index 69d08c41..ea348005 100644 --- a/src/core/userinputhandler.cpp +++ b/src/core/userinputhandler.cpp @@ -153,7 +153,7 @@ void UserInputHandler::handleMsg(QString bufname, QString msg) { params << msg.section(' ', 0, 0); params << msg.section(' ', 1); - emit putCmd("PRIVMSG", msg.split(' ')); + emit putCmd("PRIVMSG", params); } void UserInputHandler::handleNick(QString bufname, QString msg) { diff --git a/version.inc b/version.inc index f7463293..b6978d9e 100644 --- a/version.inc +++ b/version.inc @@ -5,7 +5,7 @@ quasselVersion = "0.2.0-pre"; quasselDate = "2008-02-05"; - quasselBuild = 462; + quasselBuild = 463; //! Minimum client build number the core needs clientBuildNeeded = 462; -- 2.20.1