diff options
Diffstat (limited to 'kopete/protocols/irc/ircservercontact.cpp')
-rw-r--r-- | kopete/protocols/irc/ircservercontact.cpp | 40 |
1 files changed, 20 insertions, 20 deletions
diff --git a/kopete/protocols/irc/ircservercontact.cpp b/kopete/protocols/irc/ircservercontact.cpp index 7c7a9d50..0f9189f0 100644 --- a/kopete/protocols/irc/ircservercontact.cpp +++ b/kopete/protocols/irc/ircservercontact.cpp @@ -35,33 +35,33 @@ IRCServerContact::IRCServerContact(IRCContactManager *contactManager, const TQSt { KIRC::Engine *engine = kircEngine(); - TQObject::connect(engine, TQT_SIGNAL(internalError(KIRC::Engine::Error, KIRC::Message &)), - this, TQT_SLOT(engineInternalError(KIRC::Engine::Error, KIRC::Message &))); + TQObject::connect(engine, TQ_SIGNAL(internalError(KIRC::Engine::Error, KIRC::Message &)), + this, TQ_SLOT(engineInternalError(KIRC::Engine::Error, KIRC::Message &))); /* //FIXME: Have some kind of a debug option for raw input/ouput display?? - TQObject::connect(engine, TQT_SIGNAL(sentMessage(KIRC::Message &)), - this, TQT_SLOT(engineSentMessage(KIRC::Message &))); - TQObject::connect(engine, TQT_SIGNAL(receivedMessage(KIRC::Message &)), - this, TQT_SLOT(engineReceivedMessage(KIRC::Message &))); + TQObject::connect(engine, TQ_SIGNAL(sentMessage(KIRC::Message &)), + this, TQ_SLOT(engineSentMessage(KIRC::Message &))); + TQObject::connect(engine, TQ_SIGNAL(receivedMessage(KIRC::Message &)), + this, TQ_SLOT(engineReceivedMessage(KIRC::Message &))); */ - TQObject::connect(engine, TQT_SIGNAL(incomingNotice(const TQString &, const TQString &)), - this, TQT_SLOT(slotIncomingNotice(const TQString &, const TQString &))); + TQObject::connect(engine, TQ_SIGNAL(incomingNotice(const TQString &, const TQString &)), + this, TQ_SLOT(slotIncomingNotice(const TQString &, const TQString &))); - TQObject::connect(engine, TQT_SIGNAL(incomingCannotSendToChannel(const TQString &, const TQString &)), - this, TQT_SLOT(slotCannotSendToChannel(const TQString &, const TQString &))); + TQObject::connect(engine, TQ_SIGNAL(incomingCannotSendToChannel(const TQString &, const TQString &)), + this, TQ_SLOT(slotCannotSendToChannel(const TQString &, const TQString &))); - TQObject::connect(engine, TQT_SIGNAL(incomingUnknown(const TQString &)), - this, TQT_SLOT(slotIncomingUnknown(const TQString &))); + TQObject::connect(engine, TQ_SIGNAL(incomingUnknown(const TQString &)), + this, TQ_SLOT(slotIncomingUnknown(const TQString &))); - TQObject::connect(engine, TQT_SIGNAL(incomingConnectString(const TQString &)), - this, TQT_SLOT(slotIncomingConnect(const TQString &))); + TQObject::connect(engine, TQ_SIGNAL(incomingConnectString(const TQString &)), + this, TQ_SLOT(slotIncomingConnect(const TQString &))); - TQObject::connect(engine, TQT_SIGNAL(incomingMotd(const TQString &)), - this, TQT_SLOT(slotIncomingMotd(const TQString &))); + TQObject::connect(engine, TQ_SIGNAL(incomingMotd(const TQString &)), + this, TQ_SLOT(slotIncomingMotd(const TQString &))); - TQObject::connect(Kopete::ChatSessionManager::self(), TQT_SIGNAL(viewCreated(KopeteView*)), - this, TQT_SLOT(slotViewCreated(KopeteView*)) ); + TQObject::connect(Kopete::ChatSessionManager::self(), TQ_SIGNAL(viewCreated(KopeteView*)), + this, TQ_SLOT(slotViewCreated(KopeteView*)) ); updateStatus(); } @@ -206,7 +206,7 @@ void IRCServerContact::slotDumpMessages() { manager()->appendMessage( mMsgBuffer.front() ); mMsgBuffer.pop_front(); - TQTimer::singleShot( 0, this, TQT_SLOT( slotDumpMessages() ) ); + TQTimer::singleShot( 0, this, TQ_SLOT( slotDumpMessages() ) ); } } @@ -214,7 +214,7 @@ void IRCServerContact::slotViewCreated( KopeteView *v ) { kdDebug(14121) << k_funcinfo << "Created: " << v << ", mgr: " << v->msgManager() << ", Mine: " << m_chatSession << endl; if (m_chatSession && v->msgManager() == m_chatSession) - TQTimer::singleShot(500, this, TQT_SLOT(slotDumpMessages())); + TQTimer::singleShot(500, this, TQ_SLOT(slotDumpMessages())); } #include "ircservercontact.moc" |