fixed a bug in UserInputHandler::handleMsg()
authorMarcus Eggenberger <egs@quassel-irc.org>
Tue, 5 Feb 2008 13:44:31 +0000 (13:44 +0000)
committerMarcus Eggenberger <egs@quassel-irc.org>
Tue, 5 Feb 2008 13:44:31 +0000 (13:44 +0000)
src/core/userinputhandler.cpp
version.inc

index 69d08c4..ea34800 100644 (file)
@@ -153,7 +153,7 @@ void UserInputHandler::handleMsg(QString bufname, QString msg) {
   params << msg.section(' ', 0, 0);
   params << msg.section(' ', 1);
 
   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) {
 }
 
 void UserInputHandler::handleNick(QString bufname, QString msg) {
index f746329..b6978d9 100644 (file)
@@ -5,7 +5,7 @@
 
   quasselVersion = "0.2.0-pre";
   quasselDate = "2008-02-05";
 
   quasselVersion = "0.2.0-pre";
   quasselDate = "2008-02-05";
-  quasselBuild = 462;
+  quasselBuild = 463;
 
   //! Minimum client build number the core needs
   clientBuildNeeded = 462;
 
   //! Minimum client build number the core needs
   clientBuildNeeded = 462;