summaryrefslogtreecommitdiffstats
path: root/lib/util/kdevjobtimer.cpp
diff options
context:
space:
mode:
Diffstat (limited to 'lib/util/kdevjobtimer.cpp')
-rw-r--r--lib/util/kdevjobtimer.cpp4
1 files changed, 2 insertions, 2 deletions
diff --git a/lib/util/kdevjobtimer.cpp b/lib/util/kdevjobtimer.cpp
index b0b78250..db095e55 100644
--- a/lib/util/kdevjobtimer.cpp
+++ b/lib/util/kdevjobtimer.cpp
@@ -15,7 +15,7 @@ KDevJobTimer::KDevJobTimer( void * payload, TQObject *parent, const char *name)
: TQTimer(parent, name)
{
m_payload = payload;
- connect( this, TQT_SIGNAL(timeout()), this, TQT_SLOT(slotTimeout()) );
+ connect( this, TQ_SIGNAL(timeout()), this, TQ_SLOT(slotTimeout()) );
}
KDevJobTimer::~KDevJobTimer()
@@ -26,7 +26,7 @@ void KDevJobTimer::singleShot(int msec, TQObject * receiver, const char * member
{
KDevJobTimer * p = new KDevJobTimer( payload );
p->start( msec, true );
- connect( p, TQT_SIGNAL(timeout(void*)), receiver, member );
+ connect( p, TQ_SIGNAL(timeout(void*)), receiver, member );
}
void KDevJobTimer::slotTimeout()