diff options
author | Michele Calgaro <michele.calgaro@yahoo.it> | 2025-07-12 18:49:05 +0900 |
---|---|---|
committer | Michele Calgaro <michele.calgaro@yahoo.it> | 2025-07-12 18:49:05 +0900 |
commit | 3651f7e38682f40aa505d3cba1d6e69c15614db1 (patch) | |
tree | 3b952676d0c5e3cca20210bc23fe996dd403114e /noatun/library/pluginloader.cpp | |
parent | 5b4685c0df85649d6d14f46ef3e3286cdb308fa5 (diff) | |
download | tdemultimedia-3651f7e38682f40aa505d3cba1d6e69c15614db1.tar.gz tdemultimedia-3651f7e38682f40aa505d3cba1d6e69c15614db1.zip |
Use TDESimpleConfig
Signed-off-by: Michele Calgaro <michele.calgaro@yahoo.it>
Diffstat (limited to 'noatun/library/pluginloader.cpp')
-rw-r--r-- | noatun/library/pluginloader.cpp | 4 |
1 files changed, 2 insertions, 2 deletions
diff --git a/noatun/library/pluginloader.cpp b/noatun/library/pluginloader.cpp index c402607c..bc1cc2ff 100644 --- a/noatun/library/pluginloader.cpp +++ b/noatun/library/pluginloader.cpp @@ -1,7 +1,7 @@ #include <tqfile.h> #include <tdeglobal.h> #include <tqdir.h> -#include <ksimpleconfig.h> +#include <tdesimpleconfig.h> #include <tdestandarddirs.h> #include <knotifyclient.h> #include <tdelocale.h> @@ -138,7 +138,7 @@ NoatunLibraryInfo LibraryLoader::getInfo(const TQString &spec) const TQString specPath = (spec[0]=='/') ? spec : TDEGlobal::dirs()->findResource("appdata", spec); if (!TQFile::exists(specPath)) return info; - KSimpleConfig file(specPath); + TDESimpleConfig file(specPath); if (spec.find('/')>=0) info.specfile=KURL(spec).fileName(); else |