diff options
Diffstat (limited to 'kdat/FormatOptDlg.h')
-rw-r--r-- | kdat/FormatOptDlg.h | 18 |
1 files changed, 9 insertions, 9 deletions
diff --git a/kdat/FormatOptDlg.h b/kdat/FormatOptDlg.h index b4c5540..b75baeb 100644 --- a/kdat/FormatOptDlg.h +++ b/kdat/FormatOptDlg.h @@ -19,8 +19,8 @@ #ifndef _FormatOptDlg_h_ #define _FormatOptDlg_h_ -#include <qdialog.h> -#include <qstring.h> +#include <tqdialog.h> +#include <tqstring.h> class QComboBox; class QLineEdit; @@ -28,13 +28,13 @@ class QLineEdit; /** * @short Display/edit options for formatting a tape. */ -class FormatOptDlg : public QDialog { +class FormatOptDlg : public TQDialog { Q_OBJECT - QString _name; + TQString _name; int _size; - QLineEdit* _entry; - QLineEdit* _tapeSize; - QComboBox* _tapeSizeUnits; + TQLineEdit* _entry; + TQLineEdit* _tapeSize; + TQComboBox* _tapeSizeUnits; private slots: void okClicked(); public: @@ -45,7 +45,7 @@ public: * @param parent The parent widget for the dialog. * @param name The name for the dialog. */ - FormatOptDlg( const QString & def, QWidget* parent=0, const char* name=0 ); + FormatOptDlg( const TQString & def, TQWidget* parent=0, const char* name=0 ); /** * Destroy the format options dialog. @@ -57,7 +57,7 @@ public: * * @return The name for the tape being formatted. */ - QString getName(); + TQString getName(); /** * Get the capacity of the new tape. |