summaryrefslogtreecommitdiffstats
path: root/src/k3b.cpp
diff options
context:
space:
mode:
authorMichele Calgaro <michele.calgaro@yahoo.it>2025-07-12 18:09:47 +0900
committerMichele Calgaro <michele.calgaro@yahoo.it>2025-07-12 18:09:47 +0900
commit4e46f706ca269084df1f136e9949c15a734f1bd3 (patch)
tree18a12a65b4eafc9ae31f6284d5d995331b468f05 /src/k3b.cpp
parent2b2408156fb031c59048bd3b94e2f1bf79c1be37 (diff)
downloadk3b-4e46f706ca269084df1f136e9949c15a734f1bd3.tar.gz
k3b-4e46f706ca269084df1f136e9949c15a734f1bd3.zip
Use TDESimpleConfig
Signed-off-by: Michele Calgaro <michele.calgaro@yahoo.it>
Diffstat (limited to 'src/k3b.cpp')
-rw-r--r--src/k3b.cpp4
1 files changed, 2 insertions, 2 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" );
// ----------------------------------------------------------