summaryrefslogtreecommitdiffstats
path: root/katomic
diff options
context:
space:
mode:
authorMichele Calgaro <michele.calgaro@yahoo.it>2025-07-12 18:48:43 +0900
committerMichele Calgaro <michele.calgaro@yahoo.it>2025-07-12 18:48:43 +0900
commit2681b5b264d29f97cf24ebb25978dd806799c2ac (patch)
tree8da051ec89943061fd4eceef79a70a01a768a271 /katomic
parent8329caf4f231b1aa28836e7e2d75e15325291de1 (diff)
downloadtdegames-master.tar.gz
tdegames-master.zip
Use TDESimpleConfigHEADmaster
Signed-off-by: Michele Calgaro <michele.calgaro@yahoo.it>
Diffstat (limited to 'katomic')
-rw-r--r--katomic/feld.cpp4
-rw-r--r--katomic/feld.h4
-rw-r--r--katomic/gamewidget.cpp4
-rw-r--r--katomic/molek.cpp4
-rw-r--r--katomic/molek.h4
-rw-r--r--katomic/toplevel.cpp2
6 files changed, 11 insertions, 11 deletions
diff --git a/katomic/feld.cpp b/katomic/feld.cpp
index e8af79eb..bb8f40d1 100644
--- a/katomic/feld.cpp
+++ b/katomic/feld.cpp
@@ -15,7 +15,7 @@
#include <kiconloader.h>
#include <tdeglobal.h>
#include <tdestandarddirs.h>
-#include <ksimpleconfig.h>
+#include <tdesimpleconfig.h>
#include "molek.h"
#include "feld.h"
#include "settings.h"
@@ -67,7 +67,7 @@ void Feld::resetValidDirs()
}
}
-void Feld::load (const KSimpleConfig& config)
+void Feld::load (const TDESimpleConfig& config)
{
if(moving)
this->killTimers();
diff --git a/katomic/feld.h b/katomic/feld.h
index 5f8d5cc4..3af0aa6c 100644
--- a/katomic/feld.h
+++ b/katomic/feld.h
@@ -22,7 +22,7 @@
#define MAX_UNDO (100)
-class KSimpleConfig;
+class TDESimpleConfig;
class Molek;
#define FIELD_SIZE 15
@@ -45,7 +45,7 @@ public:
void startAnimation (Direction dir);
void done ();
- void load (const KSimpleConfig& config);
+ void load (const TDESimpleConfig& config);
void setMolek(Molek *_mol) { mol = _mol; }
diff --git a/katomic/gamewidget.cpp b/katomic/gamewidget.cpp
index 5266e079..0be6a43b 100644
--- a/katomic/gamewidget.cpp
+++ b/katomic/gamewidget.cpp
@@ -35,7 +35,7 @@
#include <tdelocale.h>
#include <tdestandarddirs.h>
#include <tdeglobal.h>
-#include <ksimpleconfig.h>
+#include <tdesimpleconfig.h>
#include <tdeglobalsettings.h>
Options settings;
@@ -143,7 +143,7 @@ void GameWidget::updateLevel (int l)
return updateLevel(1);
}
- KSimpleConfig cfg(levelFile, true);
+ TDESimpleConfig cfg(levelFile, true);
cfg.setGroup("Level");
feld->load(cfg);
diff --git a/katomic/molek.cpp b/katomic/molek.cpp
index bc3d89ad..d59fd37c 100644
--- a/katomic/molek.cpp
+++ b/katomic/molek.cpp
@@ -18,7 +18,7 @@
#include <kiconloader.h>
#include <tdeglobal.h>
#include <tdestandarddirs.h>
-#include <ksimpleconfig.h>
+#include <tdesimpleconfig.h>
#include <tdelocale.h>
#include <kdebug.h>
@@ -47,7 +47,7 @@ const atom& Molek::getAtom(uint index) const
return *atoms.at(index - 1);
}
-void Molek::load (const KSimpleConfig& config)
+void Molek::load (const TDESimpleConfig& config)
{
atoms.clear();
TQString key;
diff --git a/katomic/molek.h b/katomic/molek.h
index b019595c..14386e08 100644
--- a/katomic/molek.h
+++ b/katomic/molek.h
@@ -16,7 +16,7 @@
#include "atom.h"
#include <tqvaluelist.h>
-class KSimpleConfig;
+class TDESimpleConfig;
#define MOLEK_SIZE 15
@@ -29,7 +29,7 @@ public:
Molek (TQWidget *parent=0, const char *name=0);
~Molek ();
- void load(const KSimpleConfig& config);
+ void load(const TDESimpleConfig& config);
const atom& getAtom(uint index) const;
int atomSize() const { return atoms.count(); }
diff --git a/katomic/toplevel.cpp b/katomic/toplevel.cpp
index 40566fc8..4449a5df 100644
--- a/katomic/toplevel.cpp
+++ b/katomic/toplevel.cpp
@@ -23,7 +23,7 @@
#include <tdeglobal.h>
#include <tdelocale.h>
-#include <ksimpleconfig.h>
+#include <tdesimpleconfig.h>
#include <tdestandarddirs.h>
#include <tdeapplication.h>