diff options
Diffstat (limited to 'lilo-config/qt/Details.h')
-rw-r--r-- | lilo-config/qt/Details.h | 23 |
1 files changed, 12 insertions, 11 deletions
diff --git a/lilo-config/qt/Details.h b/lilo-config/qt/Details.h index c7c7f98..079a83a 100644 --- a/lilo-config/qt/Details.h +++ b/lilo-config/qt/Details.h @@ -32,11 +32,12 @@ #include <tqcombobox.h> #include <tqlineedit.h> #include <tqpushbutton.h> -class Details:public QDialog +class Details:public TQDialog { Q_OBJECT + TQ_OBJECT public: - Details(liloimage *lilo, TQWidget *parent=0, const char *name=0, WFlags f=0); + Details(liloimage *lilo, TQWidget *tqparent=0, const char *name=0, WFlags f=0); bool isReadOnly() const { return readonly->isChecked(); }; TQString vgaMode() const; bool isUnsafe() const { return unsafe->isChecked(); }; @@ -48,14 +49,14 @@ private slots: void check_pw(); private: liloimage *l; - QCheckBox *readonly; - QComboBox *vga; - QCheckBox *unsafe; - QCheckBox *lock; - QCheckBox *restricted; - QCheckBox *use_password; - QLineEdit *password; - QPushButton *ok; - QPushButton *cancel; + TQCheckBox *readonly; + TQComboBox *vga; + TQCheckBox *unsafe; + TQCheckBox *lock; + TQCheckBox *restricted; + TQCheckBox *use_password; + TQLineEdit *password; + TQPushButton *ok; + TQPushButton *cancel; }; #endif |