summaryrefslogtreecommitdiffstats
path: root/kcontrol/tdm/main.cpp
diff options
context:
space:
mode:
Diffstat (limited to 'kcontrol/tdm/main.cpp')
-rw-r--r--kcontrol/tdm/main.cpp6
1 files changed, 3 insertions, 3 deletions
diff --git a/kcontrol/tdm/main.cpp b/kcontrol/tdm/main.cpp
index 71e09cb0d..fdba26c5d 100644
--- a/kcontrol/tdm/main.cpp
+++ b/kcontrol/tdm/main.cpp
@@ -76,7 +76,7 @@ KURL *decodeImgDrop(TQDropEvent *e, TQWidget *wdg)
return 0;
}
-KSimpleConfig *config;
+TDESimpleConfig *config;
TDModule::TDModule(TQWidget *parent, const char *name, const TQStringList &)
: TDECModule(TDMFactory::instance(), parent, name)
@@ -175,10 +175,10 @@ TDModule::TDModule(TQWidget *parent, const char *name, const TQStringList &)
struct stat st;
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" ));
}
TQVBoxLayout *top = new TQVBoxLayout(this);