diff options
Diffstat (limited to 'kdat/VerifyOptDlg.h')
-rw-r--r-- | kdat/VerifyOptDlg.h | 14 |
1 files changed, 7 insertions, 7 deletions
diff --git a/kdat/VerifyOptDlg.h b/kdat/VerifyOptDlg.h index f5023e4..67275a3 100644 --- a/kdat/VerifyOptDlg.h +++ b/kdat/VerifyOptDlg.h @@ -19,8 +19,8 @@ #ifndef _VerifyOptDlg_h_ #define _VerifyOptDlg_h_ -#include <qdialog.h> -#include <qstring.h> +#include <tqdialog.h> +#include <tqstring.h> class QLineEdit; @@ -30,11 +30,11 @@ class QLineEdit; * The verify and restore operations are similiar enough that their options * have been combined into a single dialog. */ -class VerifyOptDlg : public QDialog { +class VerifyOptDlg : public TQDialog { Q_OBJECT bool _restore; - QString _workingDir; - QLineEdit* _entry; + TQString _workingDir; + TQLineEdit* _entry; private slots: void okClicked(); void slotBrowse(); @@ -48,7 +48,7 @@ public: * @param parent The parent widget for the dialog. * @param name The name for the dialog. */ - VerifyOptDlg( const QString & def, const QStringList& files, bool restore = FALSE, QWidget* parent = 0, const char* name = 0 ); + VerifyOptDlg( const TQString & def, const TQStringList& files, bool restore = FALSE, TQWidget* parent = 0, const char* name = 0 ); /** * Destroy the verify/restore options dialog. @@ -60,7 +60,7 @@ public: * * @return The working directory for the verify/restore operation. */ - QString getWorkingDirectory(); + TQString getWorkingDirectory(); }; #endif |