diff options
Diffstat (limited to 'lilo-config/kde/kcontrol.cpp')
-rw-r--r-- | lilo-config/kde/kcontrol.cpp | 6 |
1 files changed, 3 insertions, 3 deletions
diff --git a/lilo-config/kde/kcontrol.cpp b/lilo-config/kde/kcontrol.cpp index e16cbcc..75f514c 100644 --- a/lilo-config/kde/kcontrol.cpp +++ b/lilo-config/kde/kcontrol.cpp @@ -31,16 +31,16 @@ #include <ui.h> #include <kglobal.h> #include <klocale.h> -#include <layout.h> +#include <tqlayout.h> #include <kaboutdata.h> #include <unistd.h> KControl::KControl(TQWidget *parent, const char *name) : KCModule(parent, 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(); |