diff options
author | Michele Calgaro <michele.calgaro@yahoo.it> | 2025-07-12 18:57:41 +0900 |
---|---|---|
committer | Michele Calgaro <michele.calgaro@yahoo.it> | 2025-07-12 18:57:41 +0900 |
commit | c327636f4934564a4f1f7c7ce3b6ab73eaec230d (patch) | |
tree | 54a98d7d0fa063b1ac0be810fc20f788aa3c7f9c /knode/knnntpaccount.cpp | |
parent | 8f878546e0a859e78dfc2c6ff7f08507347a76ea (diff) | |
download | tdepim-c327636f4934564a4f1f7c7ce3b6ab73eaec230d.tar.gz tdepim-c327636f4934564a4f1f7c7ce3b6ab73eaec230d.zip |
Use TDESimpleConfig
Signed-off-by: Michele Calgaro <michele.calgaro@yahoo.it>
Diffstat (limited to 'knode/knnntpaccount.cpp')
-rw-r--r-- | knode/knnntpaccount.cpp | 8 |
1 files changed, 4 insertions, 4 deletions
diff --git a/knode/knnntpaccount.cpp b/knode/knnntpaccount.cpp index 2328a137..77ee6ef3 100644 --- a/knode/knnntpaccount.cpp +++ b/knode/knnntpaccount.cpp @@ -12,7 +12,7 @@ Inc., 51 Franklin Street, Fifth Floor, Boston, MA 02110-1301, US */ -#include <ksimpleconfig.h> +#include <tdesimpleconfig.h> #include <tdestandarddirs.h> #include <kdebug.h> @@ -92,7 +92,7 @@ KNNntpAccount::~KNNntpAccount() // tries to read information, returns false if it fails to do so bool KNNntpAccount::readInfo(const TQString &confPath) { - KSimpleConfig conf(confPath); + TDESimpleConfig conf(confPath); n_ame = conf.readEntry("name"); //u_nsentCount = conf.readNumEntry("unsentCnt", 0); @@ -130,7 +130,7 @@ void KNNntpAccount::saveInfo() if (dir.isNull()) return; - KSimpleConfig conf(dir+"info"); + TDESimpleConfig conf(dir+"info"); conf.writeEntry("name", n_ame); //conf.writeEntry("unsentCnt", u_nsentCount); @@ -167,7 +167,7 @@ void KNNntpAccount::saveInfo() TQString dir(path()); if (dir.isNull()) return; - KSimpleConfig conf(dir+"info"); + TDESimpleConfig conf(dir+"info"); conf.writeEntry("unsentCnt", u_nsentCount); }*/ |