diff options
author | Michele Calgaro <michele.calgaro@yahoo.it> | 2025-07-13 19:55:44 +0900 |
---|---|---|
committer | Michele Calgaro <michele.calgaro@yahoo.it> | 2025-07-13 19:55:44 +0900 |
commit | 9ca04089b3ffd804e4c3bc8522b3e5fb0d3c96e2 (patch) | |
tree | a5a5b4f02bb51682ab632d364e0d1880e209f1ca | |
parent | 4136c7e498cdf12662333ff51f9b115a0c56bd2e (diff) | |
download | tdetoys-master.tar.gz tdetoys-master.zip |
Signed-off-by: Michele Calgaro <michele.calgaro@yahoo.it>
-rw-r--r-- | kworldwatch/maploader.cpp | 4 |
1 files changed, 2 insertions, 2 deletions
diff --git a/kworldwatch/maploader.cpp b/kworldwatch/maploader.cpp index 927491f..d5efd29 100644 --- a/kworldwatch/maploader.cpp +++ b/kworldwatch/maploader.cpp @@ -37,7 +37,7 @@ #include <tdeglobal.h> #include <tdestandarddirs.h> -#include <kdesktopfile.h> +#include <tdedesktopfile.h> #include <kimageeffect.h> @@ -52,7 +52,7 @@ TQPtrList<MapTheme> MapLoader::themes() TQStringList files = TDEGlobal::dirs()->findAllResources("data", "kworldclock/maps/*/*.desktop"); for (TQStringList::Iterator it=files.begin(); it != files.end(); ++it) { - KDesktopFile conf(*it); + TDEDesktopFile conf(*it); conf.setGroup("Theme"); result.append(new MapTheme(conf.readName(), conf.readEntry("Theme"))); } |