summaryrefslogtreecommitdiffstats
diff options
context:
space:
mode:
authorMichele Calgaro <michele.calgaro@yahoo.it>2025-07-13 19:56:22 +0900
committerMichele Calgaro <michele.calgaro@yahoo.it>2025-07-13 19:56:22 +0900
commitb450c8c0aa4cf17f9db9999ae900dd01a45ed2af (patch)
tree22ef621a5302480b67a1b7b01d72b9d08c5dffa7
parent1bd767867e6de48b015e077ce99e42087c846439 (diff)
downloadkipi-plugins-master.tar.gz
kipi-plugins-master.zip
Use TDEDesktopFileHEADmaster
Signed-off-by: Michele Calgaro <michele.calgaro@yahoo.it>
-rw-r--r--kipi-plugins/htmlexport/theme.cpp6
1 files changed, 3 insertions, 3 deletions
diff --git a/kipi-plugins/htmlexport/theme.cpp b/kipi-plugins/htmlexport/theme.cpp
index 195ca30..8ee9e84 100644
--- a/kipi-plugins/htmlexport/theme.cpp
+++ b/kipi-plugins/htmlexport/theme.cpp
@@ -27,7 +27,7 @@ Foundation, Inc., 51 Franklin Street, Fifth Floor, Cambridge, MA 02110-1301, USA
// KDE
#include <kdebug.h>
-#include <kdesktopfile.h>
+#include <tdedesktopfile.h>
#include <tdestandarddirs.h>
#include <kurl.h>
@@ -53,7 +53,7 @@ static Theme::List sList;
struct Theme::Private {
- KDesktopFile* mDesktopFile;
+ TDEDesktopFile* mDesktopFile;
KURL mURL;
ParameterList mParameterList;
@@ -90,7 +90,7 @@ struct Theme::Private {
}
void init(const TQString& desktopFileName) {
- mDesktopFile=new KDesktopFile(desktopFileName, true /*read only*/);
+ mDesktopFile=new TDEDesktopFile(desktopFileName, true /*read only*/);
mURL.setPath(desktopFileName);
TQStringList parameterNameList = readParameterNameList(desktopFileName);