summaryrefslogtreecommitdiffstats
path: root/akregator/src
diff options
context:
space:
mode:
authorMichele Calgaro <michele.calgaro@yahoo.it>2025-07-12 18:57:41 +0900
committerMichele Calgaro <michele.calgaro@yahoo.it>2025-07-12 18:57:41 +0900
commitc327636f4934564a4f1f7c7ce3b6ab73eaec230d (patch)
tree54a98d7d0fa063b1ac0be810fc20f788aa3c7f9c /akregator/src
parent8f878546e0a859e78dfc2c6ff7f08507347a76ea (diff)
downloadtdepim-c327636f4934564a4f1f7c7ce3b6ab73eaec230d.tar.gz
tdepim-c327636f4934564a4f1f7c7ce3b6ab73eaec230d.zip
Use TDESimpleConfig
Signed-off-by: Michele Calgaro <michele.calgaro@yahoo.it>
Diffstat (limited to 'akregator/src')
-rw-r--r--akregator/src/akregator_part.cpp4
1 files changed, 2 insertions, 2 deletions
diff --git a/akregator/src/akregator_part.cpp b/akregator/src/akregator_part.cpp
index 0dcf6b91..bfb03add 100644
--- a/akregator/src/akregator_part.cpp
+++ b/akregator/src/akregator_part.cpp
@@ -255,7 +255,7 @@ void Part::slotOnShutdown()
m_shuttingDown = true;
const TQString lockLocation = locateLocal("data", "akregator/lock");
- KSimpleConfig config(lockLocation);
+ TDESimpleConfig config(lockLocation);
config.writeEntry("pid", -1);
config.sync();
@@ -958,7 +958,7 @@ bool Part::tryToLock(const TQString& backendName)
programName = i18n("Akregator");
TQString lockLocation = locateLocal("data", "akregator/lock");
- KSimpleConfig config(lockLocation);
+ TDESimpleConfig config(lockLocation);
int oldPid = config.readNumEntry("pid", -1);
const TQString oldHostName = config.readEntry("hostname");
const TQString oldAppName = config.readEntry( "appName", appName );