summaryrefslogtreecommitdiffstats
path: root/src
diff options
context:
space:
mode:
authorMichele Calgaro <michele.calgaro@yahoo.it>2025-07-12 18:00:10 +0900
committerMichele Calgaro <michele.calgaro@yahoo.it>2025-07-12 18:00:10 +0900
commiteec810e0ad9d342ccd97492fb74fca01f2cda823 (patch)
treebec89d162bfd920bbacdad6d907f2cbddeb04212 /src
parentd7055093c224d8baefc45864144657ea50195753 (diff)
downloadksquirrel-eec810e0ad9d342ccd97492fb74fca01f2cda823.tar.gz
ksquirrel-eec810e0ad9d342ccd97492fb74fca01f2cda823.zip
Use TDESimpleConfig
Signed-off-by: Michele Calgaro <michele.calgaro@yahoo.it>
Diffstat (limited to 'src')
-rw-r--r--src/sidebar/sq_categorybrowsermenu.cpp6
1 files changed, 3 insertions, 3 deletions
diff --git a/src/sidebar/sq_categorybrowsermenu.cpp b/src/sidebar/sq_categorybrowsermenu.cpp
index 4f03e44..cb776ed 100644
--- a/src/sidebar/sq_categorybrowsermenu.cpp
+++ b/src/sidebar/sq_categorybrowsermenu.cpp
@@ -41,7 +41,7 @@ CONNECTION WITH THE SOFTWARE OR THE USE OR OTHER DEALINGS IN THE SOFTWARE.
#include <tdeapplication.h>
#include <tdeprocess.h>
#include <kiconloader.h>
-#include <ksimpleconfig.h>
+#include <tdesimpleconfig.h>
#include <kdesktopfile.h>
#include <kmimetype.h>
#include <tdeglobalsettings.h>
@@ -200,7 +200,7 @@ void SQ_CategoryBrowserMenu::initialize()
// parse .directory if it does exist
if (TQFile::exists(path + "/.directory")) {
- KSimpleConfig c(path + "/.directory", true);
+ TDESimpleConfig c(path + "/.directory", true);
c.setDesktopGroup();
icon = TDEGlobal::iconLoader()->loadIcon(c.readEntry("Icon"),
TDEIcon::Small, TDEIcon::SizeSmall,
@@ -248,7 +248,7 @@ void SQ_CategoryBrowserMenu::initialize()
// .desktop files
if(KDesktopFile::isDesktopFile(path))
{
- KSimpleConfig c(path, true);
+ TDESimpleConfig c(path, true);
c.setDesktopGroup();
title = c.readEntry("Name", title);