summaryrefslogtreecommitdiffstats
path: root/konversation/src/ircqueue.cpp
diff options
context:
space:
mode:
Diffstat (limited to 'konversation/src/ircqueue.cpp')
-rw-r--r--konversation/src/ircqueue.cpp6
1 files changed, 3 insertions, 3 deletions
diff --git a/konversation/src/ircqueue.cpp b/konversation/src/ircqueue.cpp
index a955d01..bd55625 100644
--- a/konversation/src/ircqueue.cpp
+++ b/konversation/src/ircqueue.cpp
@@ -66,11 +66,11 @@ IRCQueue::IRCQueue(Server *server, EmptyingRate& rate, int ind) :
{
//KX << _S(m_rate.m_rate) << _S(m_rate.m_interval) << _S(m_rate.m_type) << endl;
m_timer=new TQTimer(this);
- connect(m_timer, TQT_SIGNAL(timeout()), TQT_SLOT(sendNow()));
+ connect(m_timer, TQ_SIGNAL(timeout()), TQ_SLOT(sendNow()));
if (server)
{
- connect(server, TQT_SIGNAL(serverOnline(bool)), TQT_SLOT(serverOnline(bool)));
- connect(server, TQT_SIGNAL(sentStat(int, int, IRCQueue*)), TQT_SLOT(sent(int, int, IRCQueue*)));
+ connect(server, TQ_SIGNAL(serverOnline(bool)), TQ_SLOT(serverOnline(bool)));
+ connect(server, TQ_SIGNAL(sentStat(int, int, IRCQueue*)), TQ_SLOT(sent(int, int, IRCQueue*)));
m_blocked=!(m_server->isConnected());
}
}