summaryrefslogtreecommitdiffstats
path: root/libtdegames/highscore
diff options
context:
space:
mode:
Diffstat (limited to 'libtdegames/highscore')
-rw-r--r--libtdegames/highscore/khighscore.cpp2
-rw-r--r--libtdegames/highscore/khighscore.h2
-rw-r--r--libtdegames/highscore/tdeconfigrawbackend.h6
3 files changed, 5 insertions, 5 deletions
diff --git a/libtdegames/highscore/khighscore.cpp b/libtdegames/highscore/khighscore.cpp
index 35503301..bdc82845 100644
--- a/libtdegames/highscore/khighscore.cpp
+++ b/libtdegames/highscore/khighscore.cpp
@@ -27,7 +27,7 @@
#include <sys/file.h>
#include <tdeapplication.h>
-#include <ksimpleconfig.h>
+#include <tdesimpleconfig.h>
#include <tdeglobal.h>
#include <kstdguiitem.h>
#include <tdelocale.h>
diff --git a/libtdegames/highscore/khighscore.h b/libtdegames/highscore/khighscore.h
index b313ac9f..f3b3473e 100644
--- a/libtdegames/highscore/khighscore.h
+++ b/libtdegames/highscore/khighscore.h
@@ -295,7 +295,7 @@ protected:
/**
* @return A pointer to the TDEConfig object to be used. This is
- * either tdeApp->config() (default) or a KSimpleConfig object for
+ * either tdeApp->config() (default) or a TDESimpleConfig object for
* a system-wide highscore file.
**/
TDEConfig* config() const;
diff --git a/libtdegames/highscore/tdeconfigrawbackend.h b/libtdegames/highscore/tdeconfigrawbackend.h
index fdaeb88a..4ae90f8f 100644
--- a/libtdegames/highscore/tdeconfigrawbackend.h
+++ b/libtdegames/highscore/tdeconfigrawbackend.h
@@ -23,7 +23,7 @@
#include <tqfile.h>
#include <tdeconfigbackend.h>
-#include <ksimpleconfig.h>
+#include <tdesimpleconfig.h>
class TDEConfigRawBackEnd : public TDEConfigINIBackEnd
@@ -45,13 +45,13 @@ private:
TDEConfigRawBackEndPrivate *d;
};
-class KRawConfig : public KSimpleConfig
+class KRawConfig : public TDESimpleConfig
{
TQ_OBJECT
public:
KRawConfig(int fd, bool readOnly)
- : KSimpleConfig(new TDEConfigRawBackEnd(this, fd), readOnly) {}
+ : TDESimpleConfig(new TDEConfigRawBackEnd(this, fd), readOnly) {}
};