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