diff options
author | tpearson <tpearson@283d02a7-25f6-0310-bc7c-ecb5cbfe19da> | 2010-07-31 19:25:18 +0000 |
---|---|---|
committer | tpearson <tpearson@283d02a7-25f6-0310-bc7c-ecb5cbfe19da> | 2010-07-31 19:25:18 +0000 |
commit | aa3a1ca934bc541bddd3fa136a85f106f7da266e (patch) | |
tree | 9ad0b795aed8fa4ac30c2fe0fd1aacb8175714c0 /kdat/FormatOptDlg.h | |
parent | b10cf7066791a2f362495890cd50c984e8025412 (diff) | |
download | tdeadmin-aa3a1ca934bc541bddd3fa136a85f106f7da266e.tar.gz tdeadmin-aa3a1ca934bc541bddd3fa136a85f106f7da266e.zip |
Trinity Qt initial conversion
git-svn-id: svn://anonsvn.kde.org/home/kde/branches/trinity/kdeadmin@1157635 283d02a7-25f6-0310-bc7c-ecb5cbfe19da
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. |