diff options
author | Michele Calgaro <michele.calgaro@yahoo.it> | 2025-07-11 14:14:04 +0900 |
---|---|---|
committer | Michele Calgaro <michele.calgaro@yahoo.it> | 2025-07-12 17:55:25 +0900 |
commit | 1e1cb981d39c663091ce0089f3ed66b5db2238da (patch) | |
tree | 7ecbebcd7bcb70770dc4613424acbe17b034b01f /tdeabc/distributionlist.cpp | |
parent | 2e76346c68e5c1db6b6058014c024bb70fec5e34 (diff) | |
download | tdelibs-1e1cb981d39c663091ce0089f3ed66b5db2238da.tar.gz tdelibs-1e1cb981d39c663091ce0089f3ed66b5db2238da.zip |
Rename ksimpleconfig.{h,cpp} to tdesimpleconfig.{h.cpp}.
Add temporary ksimpleconfig.h to keep things building.
This is a change of API/ABI.
Signed-off-by: Michele Calgaro <michele.calgaro@yahoo.it>
Diffstat (limited to 'tdeabc/distributionlist.cpp')
-rw-r--r-- | tdeabc/distributionlist.cpp | 6 |
1 files changed, 3 insertions, 3 deletions
diff --git a/tdeabc/distributionlist.cpp b/tdeabc/distributionlist.cpp index cb2b93b58..40f221438 100644 --- a/tdeabc/distributionlist.cpp +++ b/tdeabc/distributionlist.cpp @@ -22,7 +22,7 @@ #include <tqpair.h> #include <tqvaluelist.h> -#include <ksimpleconfig.h> +#include <tdesimpleconfig.h> #include <tdestandarddirs.h> #include <kdebug.h> @@ -185,7 +185,7 @@ TQStringList DistributionListManager::listNames() bool DistributionListManager::load() { - KSimpleConfig cfg( locateLocal( "data", "tdeabc/distlists" ) ); + TDESimpleConfig cfg( locateLocal( "data", "tdeabc/distlists" ) ); TQMap<TQString,TQString> entryMap = cfg.entryMap( "DistributionLists" ); cfg.setGroup( "DistributionLists" ); @@ -233,7 +233,7 @@ bool DistributionListManager::save() { kdDebug(5700) << "DistListManager::save()" << endl; - KSimpleConfig cfg( locateLocal( "data", "tdeabc/distlists" ) ); + TDESimpleConfig cfg( locateLocal( "data", "tdeabc/distlists" ) ); cfg.deleteGroup( "DistributionLists" ); cfg.setGroup( "DistributionLists" ); |