summaryrefslogtreecommitdiffstats
path: root/kcontrol/tdm/background.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 /kcontrol/tdm/background.cpp
parentfa284a459858f2255c485240121f7cd1cc7d17a0 (diff)
downloadtdebase-51230c05dc0d15dd4d6e6cce1020c6bac3a5cdd3.tar.gz
tdebase-51230c05dc0d15dd4d6e6cce1020c6bac3a5cdd3.zip
Use TDESimpleConfig
Signed-off-by: Michele Calgaro <michele.calgaro@yahoo.it>
Diffstat (limited to 'kcontrol/tdm/background.cpp')
-rw-r--r--kcontrol/tdm/background.cpp6
1 files changed, 3 insertions, 3 deletions
diff --git a/kcontrol/tdm/background.cpp b/kcontrol/tdm/background.cpp
index c1f459924..efeb6b088 100644
--- a/kcontrol/tdm/background.cpp
+++ b/kcontrol/tdm/background.cpp
@@ -34,10 +34,10 @@
#include "../background/bgdialog.h"
#include "background.h"
#include <tqcheckbox.h>
-#include <ksimpleconfig.h>
+#include <tdesimpleconfig.h>
#include <kdialog.h>
-extern KSimpleConfig *config;
+extern TDESimpleConfig *config;
KBackground::KBackground(TQWidget *parent, const char *name)
: TQWidget(parent, name)
@@ -51,7 +51,7 @@ KBackground::KBackground(TQWidget *parent, const char *name)
" This is done by running some program (possibly xsetroot) in the script"
" specified in the Setup= option in tdmrc (usually Xsetup).") );
config->setGroup( "X-*-Greeter" );
- m_simpleConf=new KSimpleConfig(config->readEntry( "BackgroundCfg",KDE_CONFDIR "/tdm/backgroundrc" ) );
+ m_simpleConf=new TDESimpleConfig(config->readEntry( "BackgroundCfg",KDE_CONFDIR "/tdm/backgroundrc" ) );
m_background = new BGDialog( this, m_simpleConf, false );
connect(m_background, TQ_SIGNAL(changed(bool)), TQ_SIGNAL(changed(bool)));