diff options
author | Michele Calgaro <michele.calgaro@yahoo.it> | 2025-07-12 18:19:00 +0900 |
---|---|---|
committer | Michele Calgaro <michele.calgaro@yahoo.it> | 2025-07-12 18:19:00 +0900 |
commit | bdc03f8dd51095cba4bec582c98470026ffb593f (patch) | |
tree | 2e803f84db5c8cd779fdd9b0ba66a4219cfbafbb /src | |
parent | 0700ae0de0662914d31557ae137ce02f4234d6ca (diff) | |
download | dolphin-bdc03f8dd51095cba4bec582c98470026ffb593f.tar.gz dolphin-bdc03f8dd51095cba4bec582c98470026ffb593f.zip |
Use TDESimpleConfig
Signed-off-by: Michele Calgaro <michele.calgaro@yahoo.it>
Diffstat (limited to 'src')
-rw-r--r-- | src/dolphin.cpp | 2 | ||||
-rw-r--r-- | src/dolphincontextmenu.cpp | 2 | ||||
-rw-r--r-- | src/infosidebarpage.cpp | 2 |
3 files changed, 3 insertions, 3 deletions
diff --git a/src/dolphin.cpp b/src/dolphin.cpp index 0725cae..5467209 100644 --- a/src/dolphin.cpp +++ b/src/dolphin.cpp @@ -1359,7 +1359,7 @@ void Dolphin::setupCreateNewMenuActions() TQStringList files = actionCollection()->instance()->dirs()->findAllResources("templates"); for (TQStringList::Iterator it = files.begin() ; it != files.end(); ++it) { if ((*it)[0] != '.' ) { - KSimpleConfig config(*it, true); + TDESimpleConfig config(*it, true); config.setDesktopGroup(); // tricky solution to ensure that TextFile is at the beginning diff --git a/src/dolphincontextmenu.cpp b/src/dolphincontextmenu.cpp index d8d04f0..8233c93 100644 --- a/src/dolphincontextmenu.cpp +++ b/src/dolphincontextmenu.cpp @@ -365,7 +365,7 @@ void DolphinContextMenu::insertActionItems(TDEPopupMenu* popup, TQStringList entries = dir.entryList("*.desktop", TQDir::Files); for (TQStringList::ConstIterator entryIt = entries.begin(); entryIt != entries.end(); ++entryIt) { - KSimpleConfig cfg(*dirIt + *entryIt, true); + TDESimpleConfig cfg(*dirIt + *entryIt, true); cfg.setDesktopGroup(); if ((cfg.hasKey("Actions") || cfg.hasKey("X-TDE-GetActionMenu")) && cfg.hasKey("X-TDE-ServiceTypes")) { const TQStringList types = cfg.readListEntry("X-TDE-ServiceTypes"); diff --git a/src/infosidebarpage.cpp b/src/infosidebarpage.cpp index 161e499..b1df8fc 100644 --- a/src/infosidebarpage.cpp +++ b/src/infosidebarpage.cpp @@ -441,7 +441,7 @@ void InfoSidebarPage::insertActions() TQStringList entries = dir.entryList("*.desktop", TQDir::Files); for (TQStringList::ConstIterator entryIt = entries.begin(); entryIt != entries.end(); ++entryIt) { - KSimpleConfig cfg(*dirIt + *entryIt, true); + TDESimpleConfig cfg(*dirIt + *entryIt, true); cfg.setDesktopGroup(); if ((cfg.hasKey("Actions") || cfg.hasKey("X-TDE-GetActionMenu")) && cfg.hasKey("X-TDE-ServiceTypes")) { const TQStringList types = cfg.readListEntry("X-TDE-ServiceTypes"); |