summaryrefslogtreecommitdiffstats
path: root/libtdegames
diff options
context:
space:
mode:
Diffstat (limited to 'libtdegames')
-rw-r--r--libtdegames/highscore/khighscore.cpp2
-rw-r--r--libtdegames/highscore/khighscore.h2
-rw-r--r--libtdegames/highscore/tdeconfigrawbackend.h6
-rw-r--r--libtdegames/kcarddialog.cpp14
4 files changed, 12 insertions, 12 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) {}
};
diff --git a/libtdegames/kcarddialog.cpp b/libtdegames/kcarddialog.cpp
index 3a7e98cf..e3735fec 100644
--- a/libtdegames/kcarddialog.cpp
+++ b/libtdegames/kcarddialog.cpp
@@ -35,7 +35,7 @@
#include <tdelocale.h>
#include <tdestandarddirs.h>
#include <kiconview.h>
-#include <ksimpleconfig.h>
+#include <tdesimpleconfig.h>
#include "kcarddialog.h"
#include <tqpushbutton.h>
@@ -464,7 +464,7 @@ void KCardDialog::insertCardIcons()
for (TQStringList::ConstIterator it = list.begin(); it != list.end(); ++it)
{
- KSimpleConfig cfg(*it);
+ TDESimpleConfig cfg(*it);
cfg.setGroup(TQString::fromLatin1("KDE Backdeck"));
TQString path = (*it).left((*it).findRev('/') + 1);
assert(path[path.length() - 1] == '/');
@@ -500,7 +500,7 @@ void KCardDialog::insertDeckIcons()
for (TQStringList::ConstIterator it = list.begin(); it != list.end(); ++it)
{
- KSimpleConfig cfg(*it);
+ TDESimpleConfig cfg(*it);
TQPixmap pixmap(getDeckName(*it));
if (pixmap.isNull())
continue;
@@ -742,7 +742,7 @@ void KCardDialog::saveConfig(TDEConfig* conf)
void KCardDialog::slotSetGlobalDeck()
{
- KSimpleConfig* conf = new KSimpleConfig(TQString::fromLatin1("kdeglobals"), false);
+ TDESimpleConfig* conf = new TDESimpleConfig(TQString::fromLatin1("kdeglobals"), false);
conf->setGroup(CONF_GLOBAL_GROUP);
conf->writeEntry(CONF_GLOBAL_DECK, deck());
@@ -753,7 +753,7 @@ void KCardDialog::slotSetGlobalDeck()
void KCardDialog::slotSetGlobalCardDir()
{
- KSimpleConfig* conf = new KSimpleConfig(TQString::fromLatin1("kdeglobals"), false);
+ TDESimpleConfig* conf = new TDESimpleConfig(TQString::fromLatin1("kdeglobals"), false);
conf->setGroup(CONF_GLOBAL_GROUP);
conf->writePathEntry(CONF_GLOBAL_CARDDIR, cardDir());
@@ -764,7 +764,7 @@ void KCardDialog::slotSetGlobalCardDir()
void KCardDialog::getGlobalDeck(TQString& deck, bool& random)
{
- KSimpleConfig* conf = new KSimpleConfig(TQString::fromLatin1("kdeglobals"), true);
+ TDESimpleConfig* conf = new TDESimpleConfig(TQString::fromLatin1("kdeglobals"), true);
conf->setGroup(CONF_GLOBAL_GROUP);
if (!conf->hasKey(CONF_GLOBAL_DECK) || conf->readBoolEntry(CONF_GLOBAL_RANDOMDECK, false)) {
@@ -780,7 +780,7 @@ void KCardDialog::getGlobalDeck(TQString& deck, bool& random)
void KCardDialog::getGlobalCardDir(TQString& dir, bool& random)
{
- KSimpleConfig* conf = new KSimpleConfig(TQString::fromLatin1("kdeglobals"), true);
+ TDESimpleConfig* conf = new TDESimpleConfig(TQString::fromLatin1("kdeglobals"), true);
conf->setGroup(CONF_GLOBAL_GROUP);
if (!conf->hasKey(CONF_GLOBAL_CARDDIR) || conf->readBoolEntry(CONF_GLOBAL_RANDOMCARDDIR, false)) {