diff options
Diffstat (limited to 'libtdegames/highscore/khighscore.cpp')
-rw-r--r-- | libtdegames/highscore/khighscore.cpp | 6 |
1 files changed, 3 insertions, 3 deletions
diff --git a/libtdegames/highscore/khighscore.cpp b/libtdegames/highscore/khighscore.cpp index bfed1534..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> @@ -143,7 +143,7 @@ bool KHighscore::lockForWriting(TQWidget *widget) void KHighscore::writeAndUnlock() { if ( !d->global ) { - kapp->config()->sync(); + tdeApp->config()->sync(); return; } if ( !isLocked() ) return; @@ -162,7 +162,7 @@ KHighscore::~KHighscore() TDEConfig* KHighscore::config() const { - return (d->global ? _config : kapp->config()); + return (d->global ? _config : tdeApp->config()); } void KHighscore::writeEntry(int entry, const TQString& key, const TQVariant& value) |