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/TapeInfoWidget.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/TapeInfoWidget.h')
-rw-r--r-- | kdat/TapeInfoWidget.h | 26 |
1 files changed, 13 insertions, 13 deletions
diff --git a/kdat/TapeInfoWidget.h b/kdat/TapeInfoWidget.h index 4b3b3a2..74bde2d 100644 --- a/kdat/TapeInfoWidget.h +++ b/kdat/TapeInfoWidget.h @@ -19,7 +19,7 @@ #ifndef _TapeInfoWidget_h_ #define _TapeInfoWidget_h_ -#include <qwidget.h> +#include <tqwidget.h> class QComboBox; class QLabel; @@ -31,29 +31,29 @@ class Tape; /** * @short Display/edit information about a tape index. */ -class TapeInfoWidget : public QWidget { +class TapeInfoWidget : public TQWidget { Q_OBJECT Tape* _tape; - QLineEdit* _tapeName; - QLineEdit* _tapeSize; - QComboBox* _tapeSizeUnits; - QLabel* _tapeID; - QLabel* _ctime; - QLabel* _mtime; - QLabel* _archiveCount; - QLabel* _spaceUsed; - QPushButton* _apply; + TQLineEdit* _tapeName; + TQLineEdit* _tapeSize; + TQComboBox* _tapeSizeUnits; + TQLabel* _tapeID; + TQLabel* _ctime; + TQLabel* _mtime; + TQLabel* _archiveCount; + TQLabel* _spaceUsed; + TQPushButton* _apply; bool isModified(); private slots: - void slotTextChanged( const QString & text ); + void slotTextChanged( const TQString & text ); void slotActivated( int index ); void slotApply(); public: /** * Create a new tape info widget. */ - TapeInfoWidget( QWidget* parent = 0, const char* name = 0 ); + TapeInfoWidget( TQWidget* parent = 0, const char* name = 0 ); /** * Destroy the tape info widget. |