diff options
author | Timothy Pearson <kb9vqf@pearsoncomputing.net> | 2013-01-25 00:28:32 -0600 |
---|---|---|
committer | Timothy Pearson <kb9vqf@pearsoncomputing.net> | 2013-01-25 00:28:32 -0600 |
commit | 555ea1c7f342582df2985a7c02e880174877526e (patch) | |
tree | eeab8a68eb4f5b0689daada659450ffadc7f428b /lilo-config/kde/kcontrol.cpp | |
parent | 5f444a9ea966b68991cef44d2711378ef9ff406d (diff) | |
download | tdeadmin-555ea1c7f342582df2985a7c02e880174877526e.tar.gz tdeadmin-555ea1c7f342582df2985a7c02e880174877526e.zip |
Rename KCModule, KConfig, KIO, KServer, and KSocket to avoid conflicts with KDE4
Diffstat (limited to 'lilo-config/kde/kcontrol.cpp')
-rw-r--r-- | lilo-config/kde/kcontrol.cpp | 4 |
1 files changed, 2 insertions, 2 deletions
diff --git a/lilo-config/kde/kcontrol.cpp b/lilo-config/kde/kcontrol.cpp index 0c38f47..9b443b1 100644 --- a/lilo-config/kde/kcontrol.cpp +++ b/lilo-config/kde/kcontrol.cpp @@ -36,7 +36,7 @@ #include <unistd.h> KControl::KControl(TQWidget *parent, const char *name) - : KCModule(parent, name) + : TDECModule(parent, name) { TQVBoxLayout *layout=new TQVBoxLayout(this); m=new MainWidget(this, name); @@ -79,7 +79,7 @@ void KControl::configChanged() // SLOT extern "C" { - KDE_EXPORT KCModule *create_lilo(TQWidget *parent, const char *name) + KDE_EXPORT TDECModule *create_lilo(TQWidget *parent, const char *name) { return new KControl(parent, "kcmlilo"); } |