summaryrefslogtreecommitdiffstats
path: root/lilo-config/kde-qt-common/expert.h
diff options
context:
space:
mode:
Diffstat (limited to 'lilo-config/kde-qt-common/expert.h')
-rw-r--r--lilo-config/kde-qt-common/expert.h9
1 files changed, 5 insertions, 4 deletions
diff --git a/lilo-config/kde-qt-common/expert.h b/lilo-config/kde-qt-common/expert.h
index e2fec97..7b39530 100644
--- a/lilo-config/kde-qt-common/expert.h
+++ b/lilo-config/kde-qt-common/expert.h
@@ -32,11 +32,12 @@
#include <tqwidget.h>
#include <tqmultilineedit.h>
#include <tqlayout.h>
-class Expert:public QWidget
+class Expert:public TQWidget
{
Q_OBJECT
+ TQ_OBJECT
public:
- Expert(liloconf *l=0, TQWidget *parent=0, const char *name=0);
+ Expert(liloconf *l=0, TQWidget *tqparent=0, const char *name=0);
~Expert();
void setCfg(liloconf *l) { lilo=l; };
void makeReadOnly();
@@ -47,7 +48,7 @@ signals:
void configChanged();
private:
liloconf *lilo;
- QHBoxLayout *layout;
- QMultiLineEdit *edit;
+ TQHBoxLayout *tqlayout;
+ TQMultiLineEdit *edit;
};
#endif