From cafa1692e9cb70e9ae74b8ee2ecbfd02ff5206ef Mon Sep 17 00:00:00 2001 From: Michele Calgaro Date: Sun, 13 Jul 2025 19:43:03 +0900 Subject: [PATCH] Use TDEDesktopFile Signed-off-by: Michele Calgaro --- konversation/src/theme_preferences.cpp | 4 ++-- 1 file changed, 2 insertions(+), 2 deletions(-) diff --git a/konversation/src/theme_preferences.cpp b/konversation/src/theme_preferences.cpp index abb93a4..9d491ed 100644 --- a/konversation/src/theme_preferences.cpp +++ b/konversation/src/theme_preferences.cpp @@ -39,7 +39,7 @@ #include #include #include -#include +#include #include #include // unlink() @@ -87,7 +87,7 @@ void Theme_Config::loadSettings() // iterate through all found theme directories for(TQStringList::ConstIterator it = m_dirs.begin(); it != m_dirs.end(); ++it) { - KDesktopFile themeRC(*it); + TDEDesktopFile themeRC(*it); // get the name and comment from the theme themeName = themeRC.readName(); themeComment = themeRC.readComment();