diff options
Diffstat (limited to 'src/k3b.cpp')
-rw-r--r-- | src/k3b.cpp | 4 |
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" ); // ---------------------------------------------------------- |