summaryrefslogtreecommitdiffstats
path: root/kftpgrabber/src/kftpfileexistsactions.h
diff options
context:
space:
mode:
Diffstat (limited to 'kftpgrabber/src/kftpfileexistsactions.h')
-rw-r--r--kftpgrabber/src/kftpfileexistsactions.h22
1 files changed, 11 insertions, 11 deletions
diff --git a/kftpgrabber/src/kftpfileexistsactions.h b/kftpgrabber/src/kftpfileexistsactions.h
index be2fdfe..54d2b28 100644
--- a/kftpgrabber/src/kftpfileexistsactions.h
+++ b/kftpgrabber/src/kftpfileexistsactions.h
@@ -38,8 +38,8 @@
#include <sys/types.h>
-#include <qwidget.h>
-#include <qmap.h>
+#include <ntqwidget.h>
+#include <ntqmap.h>
typedef unsigned long long int filesize_t;
@@ -56,7 +56,7 @@ enum FEAction {
FE_USER_ACT = 4
};
-typedef QMap<int, FEAction> ActionMap;
+typedef TQMap<int, FEAction> ActionMap;
/**
* This class provides configurable "on file exists" actions. They are
@@ -80,9 +80,9 @@ public:
* change the values.
*
* @param parent Widget's parent
- * @return A new @ref QWidget
+ * @return A new @ref TQWidget
*/
- QWidget *getConfigWidget(QWidget *parent = 0);
+ TQWidget *getConfigWidget(TQWidget *parent = 0);
/**
* Set action for a specific file exists situation.
@@ -109,7 +109,7 @@ public:
*
* @param text The text
*/
- void setTypeText(const QString &text) { m_type = text; }
+ void setTypeText(const TQString &text) { m_type = text; }
/**
* Update the current GUI widget with new settings.
@@ -123,15 +123,15 @@ public:
void updateConfig();
private:
ActionMap m_actions;
- QString m_type;
+ TQString m_type;
KComboBox *m_combos[3][3];
- friend QString &operator<<(QString &s, const FileExistsActions &a);
- friend QString &operator>>(QString &s, FileExistsActions &a);
+ friend TQString &operator<<(TQString &s, const FileExistsActions &a);
+ friend TQString &operator>>(TQString &s, FileExistsActions &a);
};
-QString &operator<<(QString &s, const FileExistsActions &a);
-QString &operator>>(QString &s, FileExistsActions &a);
+TQString &operator<<(TQString &s, const FileExistsActions &a);
+TQString &operator>>(TQString &s, FileExistsActions &a);
}