From 4136c7e498cdf12662333ff51f9b115a0c56bd2e Mon Sep 17 00:00:00 2001
From: Michele Calgaro <michele.calgaro@yahoo.it>
Date: Sat, 12 Jul 2025 18:58:04 +0900
Subject: Use TDESimpleConfig

Signed-off-by: Michele Calgaro <michele.calgaro@yahoo.it>
---
 amor/amoranim.cpp   | 2 +-
 amor/amoranim.h     | 4 ++--
 amor/amordialog.cpp | 4 ++--
 ktux/sprite.cpp     | 2 +-
 ktux/spriteanim.h   | 2 +-
 ktux/spritepm.h     | 2 +-
 6 files changed, 8 insertions(+), 8 deletions(-)

diff --git a/amor/amoranim.cpp b/amor/amoranim.cpp
index 4d7c071..b8e67fd 100644
--- a/amor/amoranim.cpp
+++ b/amor/amoranim.cpp
@@ -153,7 +153,7 @@ bool AmorThemeManager::setTheme(const TQString & file)
 
     delete mConfig;
 
-    mConfig = new KSimpleConfig(mPath, true);
+    mConfig = new TDESimpleConfig(mPath, true);
     mConfig->setGroup("Config");
 
     // Get the directory where the pixmaps are stored and tell the
diff --git a/amor/amoranim.h b/amor/amoranim.h
index 45a8b7f..76faccb 100644
--- a/amor/amoranim.h
+++ b/amor/amoranim.h
@@ -37,7 +37,7 @@
 #include <tqdict.h>
 #include <tqstringlist.h>
 #include <tdeconfigbase.h>
-#include <ksimpleconfig.h>
+#include <tdesimpleconfig.h>
 
 //---------------------------------------------------------------------------
 //
@@ -107,7 +107,7 @@ public:
 
 protected:
     TQString           mPath;
-    KSimpleConfig     *mConfig;
+    TDESimpleConfig   *mConfig;
     TQSize             mMaximumSize; // The largest pixmap used
     TQDict<AmorAnimationGroup> mAnimations; // list of animation groups
     bool              mStatic;	    // static image
diff --git a/amor/amordialog.cpp b/amor/amordialog.cpp
index 6e5f7cb..ad5d3a2 100644
--- a/amor/amordialog.cpp
+++ b/amor/amordialog.cpp
@@ -30,7 +30,7 @@
 #include <tqslider.h>
 #include <tqpainter.h>
 #include <tdeapplication.h>
-#include <ksimpleconfig.h>
+#include <tdesimpleconfig.h>
 #include "amordialog.h"
 #include "amordialog.moc"
 #include "version.h"
@@ -129,7 +129,7 @@ void AmorDialog::readThemes()
 //
 void AmorDialog::addTheme(const TQString& file)
 {
-    KSimpleConfig config(locate("appdata", file), true);
+    TDESimpleConfig config(locate("appdata", file), true);
 
     config.setGroup("Config");
 
diff --git a/ktux/sprite.cpp b/ktux/sprite.cpp
index 0c6f93c..fe65014 100644
--- a/ktux/sprite.cpp
+++ b/ktux/sprite.cpp
@@ -182,7 +182,7 @@ void KSpriteSaver::readSettings()
 
     path += "spriterc";
 
-    KSimpleConfig *mConfig = new KSimpleConfig(path, true);
+    TDESimpleConfig *mConfig = new TDESimpleConfig(path, true);
     mConfig->setGroup("Config");
     TQStrList list;
     int groups = mConfig->readListEntry("Groups", list);
diff --git a/ktux/spriteanim.h b/ktux/spriteanim.h
index 583690a..9ab6fd8 100644
--- a/ktux/spriteanim.h
+++ b/ktux/spriteanim.h
@@ -18,7 +18,7 @@
 #include <tqstrlist.h>
 #include <tqcanvas.h>
 #include <tdeconfigbase.h>
-#include <ksimpleconfig.h>                                                      
+#include <tdesimpleconfig.h>                                                      
 
 //---------------------------------------------------------------------------
 //
diff --git a/ktux/spritepm.h b/ktux/spritepm.h
index 351e313..48fc5c7 100644
--- a/ktux/spritepm.h
+++ b/ktux/spritepm.h
@@ -16,7 +16,7 @@
 #include <tqpixmap.h>
 #include <tqcanvas.h>
 #include <tdeconfigbase.h>
-#include <ksimpleconfig.h>                                                      
+#include <tdesimpleconfig.h>                                                      
 
 //---------------------------------------------------------------------------
 //
-- 
cgit v1.2.3

