summaryrefslogtreecommitdiffstats
path: root/libtdepim
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 /libtdepim
parent8f878546e0a859e78dfc2c6ff7f08507347a76ea (diff)
downloadtdepim-c327636f4934564a4f1f7c7ce3b6ab73eaec230d.tar.gz
tdepim-c327636f4934564a4f1f7c7ce3b6ab73eaec230d.zip
Use TDESimpleConfig
Signed-off-by: Michele Calgaro <michele.calgaro@yahoo.it>
Diffstat (limited to 'libtdepim')
-rw-r--r--libtdepim/kimportdialog.cpp6
-rw-r--r--libtdepim/komposer/core/pluginmanager.cpp2
-rw-r--r--libtdepim/pluginloaderbase.cpp4
3 files changed, 6 insertions, 6 deletions
diff --git a/libtdepim/kimportdialog.cpp b/libtdepim/kimportdialog.cpp
index 0043c580..19468ff9 100644
--- a/libtdepim/kimportdialog.cpp
+++ b/libtdepim/kimportdialog.cpp
@@ -43,7 +43,7 @@
#include <klineedit.h>
#include <tdelocale.h>
#include <kprogress.h>
-#include <ksimpleconfig.h>
+#include <tdesimpleconfig.h>
#include <tdestandarddirs.h>
#include <kurlrequester.h>
#include <tdefiledialog.h>
@@ -577,7 +577,7 @@ void KImportDialog::assignTemplate()
for ( TQStringList::iterator it = list.begin(); it != list.end(); ++it )
{
- KSimpleConfig config( *it, true );
+ TDESimpleConfig config( *it, true );
if ( !config.hasGroup( "csv column map" ) )
continue;
@@ -597,7 +597,7 @@ void KImportDialog::assignTemplate()
if ( !ok )
return;
- KSimpleConfig config( fileMap[ tmp ], true );
+ TDESimpleConfig config( fileMap[ tmp ], true );
config.setGroup( "General" );
uint numColumns = config.readUnsignedNumEntry( "Columns" );
int format = config.readNumEntry( "Format" );
diff --git a/libtdepim/komposer/core/pluginmanager.cpp b/libtdepim/komposer/core/pluginmanager.cpp
index 293203aa..577baf15 100644
--- a/libtdepim/komposer/core/pluginmanager.cpp
+++ b/libtdepim/komposer/core/pluginmanager.cpp
@@ -34,7 +34,7 @@
#include <tdeparts/componentfactory.h>
#include <kplugininfo.h>
#include <ksettings/dispatcher.h>
-#include <ksimpleconfig.h>
+#include <tdesimpleconfig.h>
#include <tdestandarddirs.h>
#include <kstaticdeleter.h>
#include <kurl.h>
diff --git a/libtdepim/pluginloaderbase.cpp b/libtdepim/pluginloaderbase.cpp
index fc028141..a899dc67 100644
--- a/libtdepim/pluginloaderbase.cpp
+++ b/libtdepim/pluginloaderbase.cpp
@@ -21,7 +21,7 @@
#include <pluginloaderbase.h>
-#include <ksimpleconfig.h>
+#include <tdesimpleconfig.h>
#include <tdelocale.h>
#include <tdestandarddirs.h>
#include <klibloader.h>
@@ -69,7 +69,7 @@ namespace KPIM {
TDEGlobal::dirs()->findAllResources( "data", path, true, true );
for ( TQStringList::const_iterator it = list.begin() ;
it != list.end() ; ++it ) {
- KSimpleConfig config( *it, true );
+ TDESimpleConfig config( *it, true );
if ( config.hasGroup( "Misc" ) && config.hasGroup( "Plugin" ) ) {
config.setGroup( "Plugin" );