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 /tdeconf_update/tdeconf_update.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 'tdeconf_update/tdeconf_update.cpp')
-rw-r--r-- | tdeconf_update/tdeconf_update.cpp | 6 |
1 files changed, 3 insertions, 3 deletions
diff --git a/tdeconf_update/tdeconf_update.cpp b/tdeconf_update/tdeconf_update.cpp index 4e99a34e9..43e790360 100644 --- a/tdeconf_update/tdeconf_update.cpp +++ b/tdeconf_update/tdeconf_update.cpp @@ -29,7 +29,7 @@ #include <tqtextstream.h> #include <tdeconfig.h> -#include <ksimpleconfig.h> +#include <tdesimpleconfig.h> #include <tdelocale.h> #include <tdecmdlineargs.h> #include <tdeglobal.h> @@ -280,7 +280,7 @@ void KonfUpdate::checkGotFile(const TQString &_file, const TQString &id) // tqDebug("File %s, id %s", file.latin1(), id.latin1()); - KSimpleConfig cfg(file); + TDESimpleConfig cfg(file); cfg.setGroup("$Version"); TQStringList ids = cfg.readListEntry("update_info"); if (ids.contains(id)) @@ -791,7 +791,7 @@ void KonfUpdate::gotScript(const TQString &_script) tmp1.setAutoDelete(false); log() << "Script input stored in " << tmp1.name() << endl; } - KSimpleConfig cfg(tmp1.name()); + TDESimpleConfig cfg(tmp1.name()); if (oldGroup.isEmpty()) { |