summaryrefslogtreecommitdiffstats
path: root/src/kvirc/kernel/kvi_ircconnection.cpp
diff options
context:
space:
mode:
Diffstat (limited to 'src/kvirc/kernel/kvi_ircconnection.cpp')
-rw-r--r--src/kvirc/kernel/kvi_ircconnection.cpp6
1 files changed, 3 insertions, 3 deletions
diff --git a/src/kvirc/kernel/kvi_ircconnection.cpp b/src/kvirc/kernel/kvi_ircconnection.cpp
index ea100f0..22b3b2d 100644
--- a/src/kvirc/kernel/kvi_ircconnection.cpp
+++ b/src/kvirc/kernel/kvi_ircconnection.cpp
@@ -109,7 +109,7 @@ KviIrcConnection::~KviIrcConnection()
m_bIdentdAttached = false;
if(m_pLocalhostDns)
{
- TQObject::disconnect(m_pLocalhostDns,TQT_SIGNAL(lookupDone(KviDns *)),0,0);
+ TQObject::disconnect(m_pLocalhostDns,TQ_SIGNAL(lookupDone(KviDns *)),0,0);
if(m_pLocalhostDns->isRunning())
{
g_pGarbageCollector->collect(m_pLocalhostDns);
@@ -600,7 +600,7 @@ void KviIrcConnection::delayedStartNotifyList()
if(m_pNotifyListTimer)delete m_pNotifyListTimer;
m_pNotifyListTimer = new TQTimer();
- connect(m_pNotifyListTimer,TQT_SIGNAL(timeout()),this,TQT_SLOT(restartNotifyList()));
+ connect(m_pNotifyListTimer,TQ_SIGNAL(timeout()),this,TQ_SLOT(restartNotifyList()));
m_pNotifyListTimer->start(15000,true);
// This delay is large enough to fire after the MOTD has been sent,
@@ -805,7 +805,7 @@ void KviIrcConnection::userInfoReceived(const TQString &szUserName,const TQStrin
// look it up too
if(m_pLocalhostDns)delete m_pLocalhostDns; // it could be only another local host lookup
m_pLocalhostDns = new KviDns();
- connect(m_pLocalhostDns,TQT_SIGNAL(lookupDone(KviDns *)),this,TQT_SLOT(hostNameLookupTerminated(KviDns *)));
+ connect(m_pLocalhostDns,TQ_SIGNAL(lookupDone(KviDns *)),this,TQ_SLOT(hostNameLookupTerminated(KviDns *)));
if(!m_pLocalhostDns->lookup(szHostName,KviDns::Any))
{