summaryrefslogtreecommitdiffstats
path: root/kftpgrabber/src/kftpqueueprocessor.h
diff options
context:
space:
mode:
authorTimothy Pearson <kb9vqf@pearsoncomputing.net>2013-07-24 15:27:17 -0500
committerTimothy Pearson <kb9vqf@pearsoncomputing.net>2013-07-24 15:27:17 -0500
commit883a1fc629f00e9a41efad8514afd1ccf259d8c2 (patch)
tree53191c33748f9cd949a2eb86a64fbedc86c5ac75 /kftpgrabber/src/kftpqueueprocessor.h
parent1385303ea163214e30825730ac0fbcc27f9634aa (diff)
downloadkftpgrabber-883a1fc629f00e9a41efad8514afd1ccf259d8c2.tar.gz
kftpgrabber-883a1fc629f00e9a41efad8514afd1ccf259d8c2.zip
Convert to TDE R14 API
Diffstat (limited to 'kftpgrabber/src/kftpqueueprocessor.h')
-rw-r--r--kftpgrabber/src/kftpqueueprocessor.h14
1 files changed, 7 insertions, 7 deletions
diff --git a/kftpgrabber/src/kftpqueueprocessor.h b/kftpgrabber/src/kftpqueueprocessor.h
index 90de1fd..ddc00e4 100644
--- a/kftpgrabber/src/kftpqueueprocessor.h
+++ b/kftpgrabber/src/kftpqueueprocessor.h
@@ -36,10 +36,10 @@
#ifndef KFTPQUEUEPROCESSOR_H
#define KFTPQUEUEPROCESSOR_H
-#include <qobject.h>
-#include <qthread.h>
-#include <qapplication.h>
-#include <qguardedptr.h>
+#include <ntqobject.h>
+#include <ntqthread.h>
+#include <ntqapplication.h>
+#include <ntqguardedptr.h>
namespace KFTPQueue {
class Site;
@@ -48,19 +48,19 @@ namespace KFTPQueue {
/**
@author Jernej Kos
*/
-class KFTPQueueProcessor : public QObject
+class KFTPQueueProcessor : public TQObject
{
friend class KFTPQueueManager;
Q_OBJECT
public:
- KFTPQueueProcessor(QObject *parent);
+ KFTPQueueProcessor(TQObject *parent);
void startProcessing();
void stopProcessing();
bool isRunning();
private:
- QGuardedPtr<KFTPQueue::Site> m_activeSite;
+ TQGuardedPtr<KFTPQueue::Site> m_activeSite;
bool m_running;
void processActiveSite();