diff options
author | Michele Calgaro <michele.calgaro@yahoo.it> | 2025-07-13 19:55:30 +0900 |
---|---|---|
committer | Michele Calgaro <michele.calgaro@yahoo.it> | 2025-07-13 19:55:30 +0900 |
commit | 16652efd0f5da6775487e6796493785d2602717d (patch) | |
tree | 745f15449146331a2abcb7da7fc8bddd2f29d574 /nsplugins/pluginscan.cpp | |
parent | 51230c05dc0d15dd4d6e6cce1020c6bac3a5cdd3 (diff) | |
download | tdebase-16652efd0f5da6775487e6796493785d2602717d.tar.gz tdebase-16652efd0f5da6775487e6796493785d2602717d.zip |
Use TDEDesktopFile
Signed-off-by: Michele Calgaro <michele.calgaro@yahoo.it>
Diffstat (limited to 'nsplugins/pluginscan.cpp')
-rw-r--r-- | nsplugins/pluginscan.cpp | 4 |
1 files changed, 2 insertions, 2 deletions
diff --git a/nsplugins/pluginscan.cpp b/nsplugins/pluginscan.cpp index 21b6bb5a0..8ea6b1ffb 100644 --- a/nsplugins/pluginscan.cpp +++ b/nsplugins/pluginscan.cpp @@ -47,7 +47,7 @@ #include <klibloader.h> #include <tdeconfig.h> #include <tdecrash.h> -#include <kdesktopfile.h> +#include <tdedesktopfile.h> #include <kservicetype.h> #include <kmimetype.h> #include <tdecmdlineargs.h> @@ -112,7 +112,7 @@ TDEConfig *infoConfig = 0; bool isPluginMimeType( TQString fname ) { - KDesktopFile cfg( fname, true ); + TDEDesktopFile cfg( fname, true ); cfg.setDesktopGroup(); return cfg.hasKey( "X-TDE-nsplugin" ); } |