diff options
| author | Michele Calgaro <michele.calgaro@yahoo.it> | 2025-07-12 18:00:10 +0900 |
|---|---|---|
| committer | Michele Calgaro <michele.calgaro@yahoo.it> | 2025-07-12 18:00:10 +0900 |
| commit | eec810e0ad9d342ccd97492fb74fca01f2cda823 (patch) | |
| tree | bec89d162bfd920bbacdad6d907f2cbddeb04212 /src | |
| parent | d7055093c224d8baefc45864144657ea50195753 (diff) | |
| download | ksquirrel-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.cpp | 6 |
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); |
