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/ArchiveInfoWidget.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/ArchiveInfoWidget.h')
-rw-r--r-- | kdat/ArchiveInfoWidget.h | 16 |
1 files changed, 8 insertions, 8 deletions
diff --git a/kdat/ArchiveInfoWidget.h b/kdat/ArchiveInfoWidget.h index 83d7bab..a34d1c9 100644 --- a/kdat/ArchiveInfoWidget.h +++ b/kdat/ArchiveInfoWidget.h @@ -19,7 +19,7 @@ #ifndef _ArchiveInfoWidget_h_ #define _ArchiveInfoWidget_h_ -#include <qwidget.h> +#include <tqwidget.h> class QLabel; class QLineEdit; @@ -30,21 +30,21 @@ class Archive; /** * @short Display/edit information about an archive index. */ -class ArchiveInfoWidget : public QWidget { +class ArchiveInfoWidget : public TQWidget { Q_OBJECT Archive* _archive; - QLineEdit* _archiveName; - QLabel* _ctime; - QLabel* _size; - QPushButton* _apply; + TQLineEdit* _archiveName; + TQLabel* _ctime; + TQLabel* _size; + TQPushButton* _apply; private slots: - void slotTextChanged( const QString& text ); + void slotTextChanged( const TQString& text ); void slotApply(); public: /** * Create a new archive info widget. */ - ArchiveInfoWidget( QWidget* parent = 0, const char* name = 0 ); + ArchiveInfoWidget( TQWidget* parent = 0, const char* name = 0 ); /** * Destroy the archive info widget. |