summaryrefslogtreecommitdiffstats
path: root/kftpgrabber/src/queueobject.cpp
diff options
context:
space:
mode:
Diffstat (limited to 'kftpgrabber/src/queueobject.cpp')
-rw-r--r--kftpgrabber/src/queueobject.cpp6
1 files changed, 3 insertions, 3 deletions
diff --git a/kftpgrabber/src/queueobject.cpp b/kftpgrabber/src/queueobject.cpp
index daf3e87..8cfd436 100644
--- a/kftpgrabber/src/queueobject.cpp
+++ b/kftpgrabber/src/queueobject.cpp
@@ -36,7 +36,7 @@
#include "queueobject.h"
#include "kftpqueue.h"
-#include <ntqtimer.h>
+#include <tqtimer.h>
namespace KFTPQueue {
@@ -56,7 +56,7 @@ QueueObject::QueueObject(TQObject *parent, Type type)
static_cast<QueueObject*>(parent)->addChildObject(this);
// Connect the delayed execution timer
- connect(&m_delayedExecuteTimer, SIGNAL(timeout()), this, SLOT(execute()));
+ connect(&m_delayedExecuteTimer, TQ_SIGNAL(timeout()), this, TQ_SLOT(execute()));
}
@@ -154,7 +154,7 @@ void QueueObject::addChildObject(QueueObject *object)
{
m_children.append(object);
- connect(object, SIGNAL(destroyed(TQObject*)), this, SLOT(slotChildDestroyed(TQObject*)));
+ connect(object, TQ_SIGNAL(destroyed(TQObject*)), this, TQ_SLOT(slotChildDestroyed(TQObject*)));
}
void QueueObject::delChildObject(QueueObject *object)