diff options
Diffstat (limited to 'src')
-rw-r--r-- | src/k3b.cpp | 4 | ||||
-rw-r--r-- | src/k3bthememanager.cpp | 4 | ||||
-rw-r--r-- | src/main.cpp | 2 | ||||
-rw-r--r-- | src/option/k3bdevicewidget.cpp | 2 |
4 files changed, 6 insertions, 6 deletions
diff --git a/src/k3b.cpp b/src/k3b.cpp index 90d257f..07c312f 100644 --- a/src/k3b.cpp +++ b/src/k3b.cpp @@ -625,7 +625,7 @@ void K3bMainWindow::saveProperties( TDEConfig* c ) // FIXME: for some reason the config entries are not properly stored when using the default // TDEMainWindow session config. Since I was not able to find the bug I use another config object // ---------------------------------------------------------- - c = new KSimpleConfig( saveDir + "list", false ); + c = new TDESimpleConfig( saveDir + "list", false ); c->setGroup( "Saved Session" ); // ---------------------------------------------------------- @@ -680,7 +680,7 @@ void K3bMainWindow::readProperties( TDEConfig* c ) // FIXME: for some reason the config entries are not properly stored when using the default // TDEMainWindow session config. Since I was not able to find the bug I use another config object // ---------------------------------------------------------- - c = new KSimpleConfig( saveDir + "list", true ); + c = new TDESimpleConfig( saveDir + "list", true ); c->setGroup( "Saved Session" ); // ---------------------------------------------------------- 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" ); diff --git a/src/main.cpp b/src/main.cpp index 8798dbe..3a3e398 100644 --- a/src/main.cpp +++ b/src/main.cpp @@ -20,7 +20,7 @@ #include <tdeprocess.h> #include <tdemessagebox.h> #include <tdestandarddirs.h> -#include <ksimpleconfig.h> +#include <tdesimpleconfig.h> #include <kstdguiitem.h> #include <kdebug.h> #include <dcopclient.h> diff --git a/src/option/k3bdevicewidget.cpp b/src/option/k3bdevicewidget.cpp index ef7cc32..3be241c 100644 --- a/src/option/k3bdevicewidget.cpp +++ b/src/option/k3bdevicewidget.cpp @@ -26,7 +26,7 @@ #include <kdialog.h> #include <tdelocale.h> #include <tdeconfig.h> -#include <ksimpleconfig.h> +#include <tdesimpleconfig.h> #include <kiconloader.h> #include <tdestandarddirs.h> #include <tdeio/global.h> |