diff options
-rw-r--r-- | ChangeLog | 2 | ||||
-rw-r--r-- | src/waconfig.cpp | 2 | ||||
-rw-r--r-- | src/waconfig.h | 4 |
3 files changed, 4 insertions, 4 deletions
@@ -302,7 +302,7 @@ 2005-08-08 Pawel Nawrocki <[email protected]> - * Removed KConfigXT, .kcfg & .kcfgc files. Variables to store are added in wlassistant.cpp files. + * Removed TDEConfigXT, .kcfg & .kcfgc files. Variables to store are added in wlassistant.cpp files. * Changed 'WaSettings' to WAConfig. 2005-08-08 Pawel Nawrocki <[email protected]> diff --git a/src/waconfig.cpp b/src/waconfig.cpp index 4dc5d41..68303ad 100644 --- a/src/waconfig.cpp +++ b/src/waconfig.cpp @@ -16,7 +16,7 @@ WAConfig *WAConfig::self() } WAConfig::WAConfig( ) - : KConfigSkeleton( TQString::fromLatin1( "wlassistantrc" ) ) + : TDEConfigSkeleton( TQString::fromLatin1( "wlassistantrc" ) ) { mSelf = this; } diff --git a/src/waconfig.h b/src/waconfig.h index bedcaf1..530c77f 100644 --- a/src/waconfig.h +++ b/src/waconfig.h @@ -23,7 +23,7 @@ #include <kconfigskeleton.h> -class WAConfig : public KConfigSkeleton +class WAConfig : public TDEConfigSkeleton { public: @@ -33,7 +33,7 @@ class WAConfig : public KConfigSkeleton static void writeConfig() { - static_cast<KConfigSkeleton*>(self())->writeConfig(); + static_cast<TDEConfigSkeleton*>(self())->writeConfig(); } protected: |