diff options
Diffstat (limited to 'lilo-config/kde/kcontrol.cpp')
-rw-r--r-- | lilo-config/kde/kcontrol.cpp | 12 |
1 files changed, 6 insertions, 6 deletions
diff --git a/lilo-config/kde/kcontrol.cpp b/lilo-config/kde/kcontrol.cpp index 846edc8..dbf2f40 100644 --- a/lilo-config/kde/kcontrol.cpp +++ b/lilo-config/kde/kcontrol.cpp @@ -35,12 +35,12 @@ #include <kaboutdata.h> #include <unistd.h> -KControl::KControl(TQWidget *parent, const char *name) - : KCModule(parent, name) +KControl::KControl(TQWidget *tqparent, const char *name) + : KCModule(tqparent, name) { - TQVBoxLayout *layout=new TQVBoxLayout(this); + TQVBoxLayout *tqlayout=new TQVBoxLayout(this); m=new MainWidget(this, name); - layout->addWidget(m); + tqlayout->addWidget(m); connect(m, TQT_SIGNAL(configChanged()), TQT_SLOT(configChanged())); if (getuid() != 0) { m->makeReadOnly(); @@ -79,9 +79,9 @@ void KControl::configChanged() // SLOT extern "C" { - KDE_EXPORT KCModule *create_lilo(TQWidget *parent, const char *name) + KDE_EXPORT KCModule *create_lilo(TQWidget *tqparent, const char *name) { - return new KControl(parent, "kcmlilo"); + return new KControl(tqparent, "kcmlilo"); } } |