diff options
Diffstat (limited to 'kdat/BackupProfileInfoWidget.h')
-rw-r--r-- | kdat/BackupProfileInfoWidget.h | 12 |
1 files changed, 6 insertions, 6 deletions
diff --git a/kdat/BackupProfileInfoWidget.h b/kdat/BackupProfileInfoWidget.h index 413cf63..53ca292 100644 --- a/kdat/BackupProfileInfoWidget.h +++ b/kdat/BackupProfileInfoWidget.h @@ -19,23 +19,23 @@ #ifndef _BackupProfileInfoWidget_h_ #define _BackupProfileInfoWidget_h_ -#include <qwidget.h> +#include <tqwidget.h> class BackupProfileWidget; /** * @short Display/edit information about a backup profile. */ -class BackupProfileInfoWidget : public QWidget { +class BackupProfileInfoWidget : public TQWidget { Q_OBJECT BackupProfile* _backupProfile; - QLineEdit* _name; + TQLineEdit* _name; BackupProfileWidget* _profile; - QPushButton* _apply; + TQPushButton* _apply; bool isModified(); private slots: - void slotTextChanged( const QString & text ); + void slotTextChanged( const TQString & text ); void slotSomethingChanged(); void slotApply(); void slotSetSelection(); @@ -44,7 +44,7 @@ public: /** * Create a new backup profile info widget. */ - BackupProfileInfoWidget( QWidget* parent = 0, const char* name = 0 ); + BackupProfileInfoWidget( TQWidget* parent = 0, const char* name = 0 ); /** * Destroy the backup profile widget. |