diff options
author | Timothy Pearson <kb9vqf@pearsoncomputing.net> | 2013-01-25 00:37:58 -0600 |
---|---|---|
committer | Timothy Pearson <kb9vqf@pearsoncomputing.net> | 2013-01-25 00:37:58 -0600 |
commit | 9ea931fb1bda0802797c1d38fd903b5451b91a5a (patch) | |
tree | 52871b68f40404504f789e2abefc24080510e51e /kweather/kweather.cpp | |
parent | 2178da111f72dc574457d5242d120b4d10ea5edd (diff) | |
download | tdetoys-9ea931fb1bda0802797c1d38fd903b5451b91a5a.tar.gz tdetoys-9ea931fb1bda0802797c1d38fd903b5451b91a5a.zip |
Rename KCModule, KConfig, KIO, KServer, and KSocket to avoid conflicts with KDE4
Diffstat (limited to 'kweather/kweather.cpp')
-rw-r--r-- | kweather/kweather.cpp | 6 |
1 files changed, 3 insertions, 3 deletions
diff --git a/kweather/kweather.cpp b/kweather/kweather.cpp index 40e5743..584f6b3 100644 --- a/kweather/kweather.cpp +++ b/kweather/kweather.cpp @@ -204,7 +204,7 @@ void kweather::slotReportFinished(){ /** load the application */ void kweather::loadPrefs(){ kdDebug(12004) << "Loading Prefs" << endl; - KConfig *kcConfig = config(); + TDEConfig *kcConfig = config(); kcConfig->reparseConfiguration(); if (!kcConfig->hasGroup ("General Options") ) @@ -223,7 +223,7 @@ void kweather::loadPrefs(){ /** Save the application mPrefs. */ void kweather::savePrefs(){ kdDebug(12004) << "Saving Prefs..." << endl; - KConfig *kcConfig = config(); + TDEConfig *kcConfig = config(); kcConfig->setGroup("General Options"); kcConfig->writeEntry("logging", logOn); @@ -324,7 +324,7 @@ void kweather::refresh(TQString stationID) void kweather::slotPrefsAccepted() { - // Preferences have been saved in the config file by the KCModule, + // Preferences have been saved in the config file by the TDECModule, // so read them out. loadPrefs(); |