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/knarticlefilter.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/knarticlefilter.cpp')
-rw-r--r-- | knode/knarticlefilter.cpp | 8 |
1 files changed, 4 insertions, 4 deletions
diff --git a/knode/knarticlefilter.cpp b/knode/knarticlefilter.cpp index 69c2acee..d55da9dc 100644 --- a/knode/knarticlefilter.cpp +++ b/knode/knarticlefilter.cpp @@ -13,7 +13,7 @@ */ #include <tdestandarddirs.h> -#include <ksimpleconfig.h> +#include <tdesimpleconfig.h> #include <tdelocale.h> #include <kdebug.h> @@ -78,7 +78,7 @@ bool KNArticleFilter::loadInfo() if (fname.isNull()) return false; - KSimpleConfig conf(fname,true); + TDESimpleConfig conf(fname,true); conf.setGroup("GENERAL"); n_ame=conf.readEntry("name"); @@ -98,7 +98,7 @@ void KNArticleFilter::load() if (fname.isNull()) return; - KSimpleConfig conf(fname,true); + TDESimpleConfig conf(fname,true); conf.setGroup("STATUS"); status.load(&conf); @@ -141,7 +141,7 @@ void KNArticleFilter::save() KNHelper::displayInternalFileError(); return; } - KSimpleConfig conf(dir+TQString("%1.fltr").arg(i_d)); + TDESimpleConfig conf(dir+TQString("%1.fltr").arg(i_d)); conf.setGroup("GENERAL"); conf.writeEntry("name", TQString(n_ame)); |