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.cpp4
1 files changed, 2 insertions, 2 deletions
diff --git a/lilo-config/kde/kcontrol.cpp b/lilo-config/kde/kcontrol.cpp
index bcce8aa..2fb40c6 100644
--- a/lilo-config/kde/kcontrol.cpp
+++ b/lilo-config/kde/kcontrol.cpp
@@ -41,7 +41,7 @@ KControl::KControl(TQWidget *parent, const char *name)
TQVBoxLayout *layout=new TQVBoxLayout(this);
m=new MainWidget(this, name);
layout->addWidget(m);
- connect(m, TQT_SIGNAL(configChanged()), TQT_SLOT(configChanged()));
+ connect(m, TQ_SIGNAL(configChanged()), TQ_SLOT(configChanged()));
if (getuid() != 0) {
m->makeReadOnly();
}
@@ -79,7 +79,7 @@ void KControl::configChanged() // SLOT
extern "C"
{
- KDE_EXPORT TDECModule *create_lilo(TQWidget *parent, const char *name)
+ TDE_EXPORT TDECModule *create_lilo(TQWidget *parent, const char *name)
{
return new KControl(parent, "kcmlilo");
}