summaryrefslogtreecommitdiffstats
path: root/knode/knfolder.cpp
diff options
context:
space:
mode:
authorMichele Calgaro <michele.calgaro@yahoo.it>2025-07-12 18:57:41 +0900
committerMichele Calgaro <michele.calgaro@yahoo.it>2025-07-12 18:57:41 +0900
commitc327636f4934564a4f1f7c7ce3b6ab73eaec230d (patch)
tree54a98d7d0fa063b1ac0be810fc20f788aa3c7f9c /knode/knfolder.cpp
parent8f878546e0a859e78dfc2c6ff7f08507347a76ea (diff)
downloadtdepim-c327636f4934564a4f1f7c7ce3b6ab73eaec230d.tar.gz
tdepim-c327636f4934564a4f1f7c7ce3b6ab73eaec230d.zip
Use TDESimpleConfig
Signed-off-by: Michele Calgaro <michele.calgaro@yahoo.it>
Diffstat (limited to 'knode/knfolder.cpp')
-rw-r--r--knode/knfolder.cpp6
1 files changed, 3 insertions, 3 deletions
diff --git a/knode/knfolder.cpp b/knode/knfolder.cpp
index bad20f6b..d2e90fa4 100644
--- a/knode/knfolder.cpp
+++ b/knode/knfolder.cpp
@@ -14,7 +14,7 @@
#include <tqfileinfo.h>
-#include <ksimpleconfig.h>
+#include <tdesimpleconfig.h>
#include <tdestandarddirs.h>
#include <kdebug.h>
#include <tdelocale.h>
@@ -111,7 +111,7 @@ bool KNFolder::readInfo(const TQString &infoPath)
i_nfoPath=infoPath;
- KSimpleConfig info(i_nfoPath);
+ TDESimpleConfig info(i_nfoPath);
if (!isRootFolder() && !isStandardFolder()) {
n_ame=info.readEntry("name");
i_d=info.readNumEntry("id", -1);
@@ -143,7 +143,7 @@ bool KNFolder::readInfo()
void KNFolder::saveInfo()
{
if(!i_nfoPath.isEmpty()) {
- KSimpleConfig info(i_nfoPath);
+ TDESimpleConfig info(i_nfoPath);
if (!isRootFolder() && !isStandardFolder()) {
info.writeEntry("name", n_ame);
info.writeEntry("id", i_d);