summaryrefslogtreecommitdiffstats
path: root/kdesktop/lockeng.cpp
diff options
context:
space:
mode:
authorMichele Calgaro <michele.calgaro@yahoo.it>2025-07-12 15:29:24 +0900
committerMichele Calgaro <michele.calgaro@yahoo.it>2025-07-12 15:39:34 +0900
commit51230c05dc0d15dd4d6e6cce1020c6bac3a5cdd3 (patch)
tree289d1261319b7c151c0f11c7917c057aa754026a /kdesktop/lockeng.cpp
parentfa284a459858f2255c485240121f7cd1cc7d17a0 (diff)
downloadtdebase-51230c05dc0d15dd4d6e6cce1020c6bac3a5cdd3.tar.gz
tdebase-51230c05dc0d15dd4d6e6cce1020c6bac3a5cdd3.zip
Use TDESimpleConfig
Signed-off-by: Michele Calgaro <michele.calgaro@yahoo.it>
Diffstat (limited to 'kdesktop/lockeng.cpp')
-rw-r--r--kdesktop/lockeng.cpp8
1 files changed, 4 insertions, 4 deletions
diff --git a/kdesktop/lockeng.cpp b/kdesktop/lockeng.cpp
index 7216acc4f..3de190484 100644
--- a/kdesktop/lockeng.cpp
+++ b/kdesktop/lockeng.cpp
@@ -22,7 +22,7 @@
#include <tdestandarddirs.h>
#include <tdeapplication.h>
#include <kservicegroup.h>
-#include <ksimpleconfig.h>
+#include <tdesimpleconfig.h>
#include <kdebug.h>
#include <tdelocale.h>
#include <tqfile.h>
@@ -869,14 +869,14 @@ bool SaverEngineEventHandler::restartLockProcess()
// Create SAK process only if SAK is enabled
struct stat st;
- KSimpleConfig *config;
+ TDESimpleConfig *config;
if (stat(KDE_CONFDIR "/tdm/tdmdistrc" , &st) == 0)
{
- config = new KSimpleConfig(TQString::fromLatin1(KDE_CONFDIR "/tdm/tdmdistrc"));
+ config = new TDESimpleConfig(TQString::fromLatin1(KDE_CONFDIR "/tdm/tdmdistrc"));
}
else
{
- config = new KSimpleConfig(TQString::fromLatin1(KDE_CONFDIR "/tdm/tdmrc"));
+ config = new TDESimpleConfig(TQString::fromLatin1(KDE_CONFDIR "/tdm/tdmrc"));
}
config->setGroup("X-:*-Greeter");
bool useSAKProcess = false;