summaryrefslogtreecommitdiffstats
diff options
context:
space:
mode:
authorMichele Calgaro <michele.calgaro@yahoo.it>2025-07-12 19:14:15 +0900
committerMichele Calgaro <michele.calgaro@yahoo.it>2025-07-12 19:14:15 +0900
commit1bd767867e6de48b015e077ce99e42087c846439 (patch)
treee360feab2d02a3459b111bd7ccab9662c20dd1ba
parent51b91a364772b531c5bd5e09b561055d42b32b21 (diff)
downloadkipi-plugins-1bd767867e6de48b015e077ce99e42087c846439.tar.gz
kipi-plugins-1bd767867e6de48b015e077ce99e42087c846439.zip
Use TDESimpleConfig
Signed-off-by: Michele Calgaro <michele.calgaro@yahoo.it>
-rw-r--r--kipi-plugins/picasawebexport/picasawebwindow.cpp6
-rw-r--r--kipi-plugins/printwizard/frmprintwizard.cpp6
2 files changed, 6 insertions, 6 deletions
diff --git a/kipi-plugins/picasawebexport/picasawebwindow.cpp b/kipi-plugins/picasawebexport/picasawebwindow.cpp
index 1077bef..6c1a3b0 100644
--- a/kipi-plugins/picasawebexport/picasawebwindow.cpp
+++ b/kipi-plugins/picasawebexport/picasawebwindow.cpp
@@ -51,7 +51,7 @@
#include <tdehtmlview.h>
#include <krun.h>
#include <kdebug.h>
-#include <ksimpleconfig.h>
+#include <tdesimpleconfig.h>
#include <tdeversion.h>
#if KDE_IS_VERSION(3,2,0)
#include <tdewallet.h>
@@ -188,7 +188,7 @@ PicasawebWindow::PicasawebWindow(KIPI::Interface* interface, const TQString &tmp
// ------------------------------------------------------------
// read config
- KSimpleConfig config("kipirc");
+ TDESimpleConfig config("kipirc");
config.setGroup("PicasawebExport Settings");
m_token = config.readEntry("token");
TQString username = config.readEntry("username");
@@ -254,7 +254,7 @@ PicasawebWindow::~PicasawebWindow()
#endif
// write config
- KSimpleConfig config("kipirc");
+ TDESimpleConfig config("kipirc");
config.setGroup("PicasawebExport Settings");
config.writeEntry("token", m_token);
config.writeEntry("username", m_username);
diff --git a/kipi-plugins/printwizard/frmprintwizard.cpp b/kipi-plugins/printwizard/frmprintwizard.cpp
index 48a7663..6ff2963 100644
--- a/kipi-plugins/printwizard/frmprintwizard.cpp
+++ b/kipi-plugins/printwizard/frmprintwizard.cpp
@@ -39,7 +39,7 @@ extern "C"
#include <kprogress.h>
#include <tdeprocess.h>
-#include <ksimpleconfig.h>
+#include <tdesimpleconfig.h>
#include <tdelistbox.h>
#include <kprinter.h>
#include <tdelocale.h>
@@ -1289,7 +1289,7 @@ TQStringList FrmPrintWizard::printPhotosToFile(TQPtrList<TPhoto> photos, TQStrin
void FrmPrintWizard::loadSettings()
{
- KSimpleConfig config("kipirc");
+ TDESimpleConfig config("kipirc");
config.setGroup("PrintWizard");
//internal PageSize
@@ -1344,7 +1344,7 @@ void FrmPrintWizard::loadSettings()
// save the current wizard settings
void FrmPrintWizard::saveSettings()
{
- KSimpleConfig config("kipirc");
+ TDESimpleConfig config("kipirc");
config.setGroup("PrintWizard");
config.writeEntry("PageSize", (int)m_pageSize);