summaryrefslogtreecommitdiffstats
path: root/lilo-config/kde/kcontrol.cpp
diff options
context:
space:
mode:
Diffstat (limited to 'lilo-config/kde/kcontrol.cpp')
-rw-r--r--lilo-config/kde/kcontrol.cpp8
1 files changed, 4 insertions, 4 deletions
diff --git a/lilo-config/kde/kcontrol.cpp b/lilo-config/kde/kcontrol.cpp
index dbf2f40..75f514c 100644
--- a/lilo-config/kde/kcontrol.cpp
+++ b/lilo-config/kde/kcontrol.cpp
@@ -35,8 +35,8 @@
#include <kaboutdata.h>
#include <unistd.h>
-KControl::KControl(TQWidget *tqparent, const char *name)
- : KCModule(tqparent, name)
+KControl::KControl(TQWidget *parent, const char *name)
+ : KCModule(parent, name)
{
TQVBoxLayout *tqlayout=new TQVBoxLayout(this);
m=new MainWidget(this, name);
@@ -79,9 +79,9 @@ void KControl::configChanged() // SLOT
extern "C"
{
- KDE_EXPORT KCModule *create_lilo(TQWidget *tqparent, const char *name)
+ KDE_EXPORT KCModule *create_lilo(TQWidget *parent, const char *name)
{
- return new KControl(tqparent, "kcmlilo");
+ return new KControl(parent, "kcmlilo");
}
}