diff options
Diffstat (limited to 'lilo-config/kde/InputBox.h')
-rw-r--r-- | lilo-config/kde/InputBox.h | 3 |
1 files changed, 2 insertions, 1 deletions
diff --git a/lilo-config/kde/InputBox.h b/lilo-config/kde/InputBox.h index 9bf88cd..50b9d10 100644 --- a/lilo-config/kde/InputBox.h +++ b/lilo-config/kde/InputBox.h @@ -39,10 +39,11 @@ class InputBox:public KDialogBase { Q_OBJECT + TQ_OBJECT public: typedef struct { TQString label; TQString dflt; bool isFile; TQString help; } entry; typedef std::list<entry> entries; - InputBox(entries e, TQWidget *parent=0, const char *name=0, bool hasCancel=true, WFlags f=0); + InputBox(entries e, TQWidget *tqparent=0, const char *name=0, bool hasCancel=true, WFlags f=0); TQStringList const text() const { TQStringList s; for(std::list<EditWidget*>::const_iterator it=edit.begin(); it!=edit.end(); it++) s << (*it)->text(); return s; }; private: std::list<EditWidget*> edit; |