diff options
author | Timothy Pearson <[email protected]> | 2013-01-25 00:14:37 -0600 |
---|---|---|
committer | Timothy Pearson <[email protected]> | 2013-01-25 00:14:37 -0600 |
commit | f5415e59afc0b32d0dbb9d385b4af9672038b86c (patch) | |
tree | 25331d6b68d7b07dd9d2e53dfec9fce801571a18 | |
parent | a9f33551a6b1a4fa53261665017b1c0d14dae104 (diff) | |
download | wlassistant-f5415e59afc0b32d0dbb9d385b4af9672038b86c.tar.gz wlassistant-f5415e59afc0b32d0dbb9d385b4af9672038b86c.zip |
Rename KCModule, KConfig, KIO, KServer, and KSocket to avoid conflicts with KDE4
-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: |