diff options
author | tpearson <tpearson@283d02a7-25f6-0310-bc7c-ecb5cbfe19da> | 2011-09-18 23:43:22 +0000 |
---|---|---|
committer | tpearson <tpearson@283d02a7-25f6-0310-bc7c-ecb5cbfe19da> | 2011-09-18 23:43:22 +0000 |
commit | 5ab9dadace563042784f58bc7398543869c1c0b9 (patch) | |
tree | 2842fa572187bb8fb5aeba893feda1c2ffeacdd2 /kopete/protocols/irc/libkirc | |
parent | 46224eafb01bb59158b4c89fbfb9b9ca53d228a0 (diff) | |
download | tdenetwork-5ab9dadace563042784f58bc7398543869c1c0b9.tar.gz tdenetwork-5ab9dadace563042784f58bc7398543869c1c0b9.zip |
Fix a number of strings in Trinity that were incorrectly converted to TQ* from Q*
This fixes the Kopete MSN protocol among other things
git-svn-id: svn://anonsvn.kde.org/home/kde/branches/trinity/kdenetwork@1254372 283d02a7-25f6-0310-bc7c-ecb5cbfe19da
Diffstat (limited to 'kopete/protocols/irc/libkirc')
-rw-r--r-- | kopete/protocols/irc/libkirc/kircengine_commands.cpp | 4 |
1 files changed, 2 insertions, 2 deletions
diff --git a/kopete/protocols/irc/libkirc/kircengine_commands.cpp b/kopete/protocols/irc/libkirc/kircengine_commands.cpp index 4295a2ee..e0e63909 100644 --- a/kopete/protocols/irc/libkirc/kircengine_commands.cpp +++ b/kopete/protocols/irc/libkirc/kircengine_commands.cpp @@ -37,7 +37,7 @@ void Engine::bindCommands() bind("PING", this, TQT_SLOT(ping(KIRC::Message &)), 0, 0); bind("PONG", this, TQT_SLOT(pong(KIRC::Message &)), 0, 0); bind("PRIVMSG", this, TQT_SLOT(privmsg(KIRC::Message &)), 1, 1); - bind("TQUIT", this, TQT_SLOT(quit(KIRC::Message &)), 0, 0); + bind("QUIT", this, TQT_SLOT(quit(KIRC::Message &)), 0, 0); // bind("STQUIT", this, TQT_SLOT(squit(KIRC::Message &)), 1, 1); bind("TOPIC", this, TQT_SLOT(topic(KIRC::Message &)), 1, 1); } @@ -199,7 +199,7 @@ void Engine::quit(const TQString &reason, bool /*now*/) return; if (isConnected()) - writeMessage("TQUIT", TQString(), reason); + writeMessage("QUIT", TQString(), reason); settqStatus(Closing); } |