diff options
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. |