diff options
author | Darrell Anderson <humanreadable@yahoo.com> | 2012-04-13 01:04:19 -0500 |
---|---|---|
committer | Slávek Banko <slavek.banko@axis.cz> | 2012-06-03 16:01:13 +0200 |
commit | 9f5f6478ce17b6136bfe177329f5731985b0b0f7 (patch) | |
tree | fe60233a0cb8dd6876a65f2456da567e2f4e00c8 /kopete/protocols/irc | |
parent | 9fbf68c99ab807aa13dfc984e6e7fc51b6358c12 (diff) | |
download | tdenetwork-9f5f6478ce17b6136bfe177329f5731985b0b0f7.tar.gz tdenetwork-9f5f6478ce17b6136bfe177329f5731985b0b0f7.zip |
Fix inadvertent "TQ" changes.
(cherry picked from commit 008eae43da364c9a910416652cf277c4ef5895c9)
Diffstat (limited to 'kopete/protocols/irc')
-rw-r--r-- | kopete/protocols/irc/ircprotocol.cpp | 2 | ||||
-rw-r--r-- | kopete/protocols/irc/libkirc/kircengine_commands.cpp | 2 |
2 files changed, 2 insertions, 2 deletions
diff --git a/kopete/protocols/irc/ircprotocol.cpp b/kopete/protocols/irc/ircprotocol.cpp index a8b39299..96d905c0 100644 --- a/kopete/protocols/irc/ircprotocol.cpp +++ b/kopete/protocols/irc/ircprotocol.cpp @@ -284,7 +284,7 @@ IRCProtocol::IRCProtocol( TQObject *parent, const char *name, const TQStringList Kopete::CommandHandler::commandHandler()->registerAlias( this, TQString::fromLatin1("msg"), TQString::fromLatin1("query %s"), - i18n("USAGE: /msg <nickname> [<message>] - Alias for TQUERY <nickname> <message>."), Kopete::CommandHandler::SystemAlias, 1 ); + i18n("USAGE: /msg <nickname> [<message>] - Alias for QUERY <nickname> <message>."), Kopete::CommandHandler::SystemAlias, 1 ); TQObject::connect( Kopete::ChatSessionManager::self(), TQT_SIGNAL(aboutToDisplay(Kopete::Message &)), this, TQT_SLOT(slotMessageFilter(Kopete::Message &)) ); diff --git a/kopete/protocols/irc/libkirc/kircengine_commands.cpp b/kopete/protocols/irc/libkirc/kircengine_commands.cpp index acea30e7..8aa5916e 100644 --- a/kopete/protocols/irc/libkirc/kircengine_commands.cpp +++ b/kopete/protocols/irc/libkirc/kircengine_commands.cpp @@ -38,7 +38,7 @@ void Engine::bindCommands() bind("PONG", this, TQT_SLOT(pong(KIRC::Message &)), 0, 0); bind("PRIVMSG", this, TQT_SLOT(privmsg(KIRC::Message &)), 1, 1); bind("QUIT", this, TQT_SLOT(quit(KIRC::Message &)), 0, 0); -// bind("STQUIT", this, TQT_SLOT(squit(KIRC::Message &)), 1, 1); +// bind("SQUIT", this, TQT_SLOT(squit(KIRC::Message &)), 1, 1); bind("TOPIC", this, TQT_SLOT(topic(KIRC::Message &)), 1, 1); } |