summaryrefslogtreecommitdiffstats
path: root/kftpgrabber/src/kftptransfer.h
diff options
context:
space:
mode:
Diffstat (limited to 'kftpgrabber/src/kftptransfer.h')
-rw-r--r--kftpgrabber/src/kftptransfer.h20
1 files changed, 10 insertions, 10 deletions
diff --git a/kftpgrabber/src/kftptransfer.h b/kftpgrabber/src/kftptransfer.h
index 78573a2..5abc35f 100644
--- a/kftpgrabber/src/kftptransfer.h
+++ b/kftpgrabber/src/kftptransfer.h
@@ -38,9 +38,9 @@
#include "queueobject.h"
-#include <qobject.h>
-#include <qtimer.h>
-#include <qguardedptr.h>
+#include <ntqobject.h>
+#include <ntqtimer.h>
+#include <ntqguardedptr.h>
#include <kurl.h>
@@ -66,7 +66,7 @@ class TransferFile;
*
* @author Jernej Kos
*/
-class FailedTransfer : public QObject
+class FailedTransfer : public TQObject
{
Q_OBJECT
public:
@@ -75,7 +75,7 @@ public:
* will be reparented (the FailedTransfer object will become its
* parent).
*/
- FailedTransfer(QObject *parent, TransferFile *transfer, const QString &error);
+ FailedTransfer(TQObject *parent, TransferFile *transfer, const TQString &error);
~FailedTransfer();
/**
@@ -83,7 +83,7 @@ public:
*
* @return The error message.
*/
- QString getError() const { return m_error; }
+ TQString getError() const { return m_error; }
/**
* Add this transfer back to the queue. The FailedTransfer object
@@ -109,10 +109,10 @@ public:
* @param transfer Pointer to the transfer object that failed.
* @param error The error that ocurred.
*/
- static void fail(TransferFile *transfer, const QString &error);
+ static void fail(TransferFile *transfer, const TQString &error);
private:
- QGuardedPtr<TransferFile> m_transfer;
- QString m_error;
+ TQGuardedPtr<TransferFile> m_transfer;
+ TQString m_error;
};
/**
@@ -131,7 +131,7 @@ friend class KFTPSession::Session;
friend class KFTPSession::Connection;
Q_OBJECT
public:
- Transfer(QObject *parent, Type type);
+ Transfer(TQObject *parent, Type type);
~Transfer();
/**