diff options
Diffstat (limited to 'src/kcmkommando.cpp')
-rw-r--r-- | src/kcmkommando.cpp | 16 |
1 files changed, 8 insertions, 8 deletions
diff --git a/src/kcmkommando.cpp b/src/kcmkommando.cpp index 5007360..2e31374 100644 --- a/src/kcmkommando.cpp +++ b/src/kcmkommando.cpp @@ -21,10 +21,10 @@ #include <ntqlayout.h> -#include <klocale.h> -#include <kglobal.h> -#include <kparts/genericfactory.h> -#include <kaboutdata.h> +#include <tdelocale.h> +#include <tdeglobal.h> +#include <tdeparts/genericfactory.h> +#include <tdeaboutdata.h> #include "kcmkommando.h" #include "configdialogimpl.h" @@ -39,10 +39,10 @@ typedef KGenericFactory<KCMKommando, TQWidget> kommandoFactory; K_EXPORT_COMPONENT_FACTORY( kcm_kommando, kommandoFactory("kcmkommando")) KCMKommando::KCMKommando(TQWidget *parent, const char *name, const TQStringList&) - : KCModule(parent, name), about(0), configDialog(0) + : TDECModule(parent, name), about(0), configDialog(0) { - about = new KAboutData("kommando", I18N_NOOP("Kommando"), version, description, - KAboutData::License_GPL, "(C) 2005 Daniel Stöckel", 0, 0, "[email protected]"); + about = new TDEAboutData("kommando", I18N_NOOP("Kommando"), version, description, + TDEAboutData::License_GPL, "(C) 2005 Daniel Stöckel", 0, 0, "[email protected]"); about->addAuthor( "Daniel Stöckel", 0, "[email protected]" ); about->addAuthor( "Sergio Cambra", 0, "[email protected]" ); setAboutData(about); @@ -85,7 +85,7 @@ void KCMKommando::save() int KCMKommando::buttons() { - return KCModule::Default|KCModule::Apply|KCModule::Help; + return TDECModule::Default|TDECModule::Apply|TDECModule::Help; } |