summaryrefslogtreecommitdiffstats
path: root/kcontrol/kio/socks.cpp
diff options
context:
space:
mode:
Diffstat (limited to 'kcontrol/kio/socks.cpp')
-rw-r--r--kcontrol/kio/socks.cpp6
1 files changed, 3 insertions, 3 deletions
diff --git a/kcontrol/kio/socks.cpp b/kcontrol/kio/socks.cpp
index 80453b75b..ef77a93c3 100644
--- a/kcontrol/kio/socks.cpp
+++ b/kcontrol/kio/socks.cpp
@@ -35,7 +35,7 @@
#include <kaboutdata.h>
KSocksConfig::KSocksConfig(TQWidget *parent)
- : KCModule(parent, "kcmkio")
+ : TDECModule(parent, "kcmkio")
{
TDEAboutData *about =
@@ -194,7 +194,7 @@ void KSocksConfig::libSelection()
void KSocksConfig::load()
{
- KConfigGroup config(kapp->config(), "Socks");
+ TDEConfigGroup config(kapp->config(), "Socks");
base->_c_enableSocks->setChecked(config.readBoolEntry("SOCKS_enable", false));
int id = config.readNumEntry("SOCKS_method", 1);
base->bg->setButton(id);
@@ -228,7 +228,7 @@ void KSocksConfig::load()
void KSocksConfig::save()
{
- KConfigGroup config(kapp->config(), "Socks");
+ TDEConfigGroup config(kapp->config(), "Socks");
config.writeEntry("SOCKS_enable",base-> _c_enableSocks->isChecked(), true, true);
config.writeEntry("SOCKS_method", base->bg->id(base->bg->selected()), true, true);
config.writePathEntry("SOCKS_lib", base->_c_customPath->url(), true, true);