diff options
author | Michele Calgaro <michele.calgaro@yahoo.it> | 2025-07-12 18:09:47 +0900 |
---|---|---|
committer | Michele Calgaro <michele.calgaro@yahoo.it> | 2025-07-12 18:09:47 +0900 |
commit | 4e46f706ca269084df1f136e9949c15a734f1bd3 (patch) | |
tree | 18a12a65b4eafc9ae31f6284d5d995331b468f05 /src/k3bthememanager.cpp | |
parent | 2b2408156fb031c59048bd3b94e2f1bf79c1be37 (diff) | |
download | k3b-4e46f706ca269084df1f136e9949c15a734f1bd3.tar.gz k3b-4e46f706ca269084df1f136e9949c15a734f1bd3.zip |
Use TDESimpleConfig
Signed-off-by: Michele Calgaro <michele.calgaro@yahoo.it>
Diffstat (limited to 'src/k3bthememanager.cpp')
-rw-r--r-- | src/k3bthememanager.cpp | 4 |
1 files changed, 2 insertions, 2 deletions
diff --git a/src/k3bthememanager.cpp b/src/k3bthememanager.cpp index 98490f8..22b0512 100644 --- a/src/k3bthememanager.cpp +++ b/src/k3bthememanager.cpp @@ -19,7 +19,7 @@ #include <tdestandarddirs.h> #include <tdeglobalsettings.h> -#include <ksimpleconfig.h> +#include <tdesimpleconfig.h> #include <kdebug.h> #include <tdeglobal.h> @@ -308,7 +308,7 @@ void K3bThemeManager::loadTheme( const TQString& name ) t->m_local = fi.isWritable(); // load the stuff - KSimpleConfig cfg( path, true ); + TDESimpleConfig cfg( path, true ); t->m_author = cfg.readEntry( "Author" ); t->m_comment = cfg.readEntry( "Comment" ); t->m_version = cfg.readEntry( "Version" ); |