summaryrefslogtreecommitdiffstats
path: root/kwallet/konfigurator
diff options
context:
space:
mode:
Diffstat (limited to 'kwallet/konfigurator')
-rw-r--r--kwallet/konfigurator/konfigurator.cpp8
-rw-r--r--kwallet/konfigurator/konfigurator.h6
2 files changed, 7 insertions, 7 deletions
diff --git a/kwallet/konfigurator/konfigurator.cpp b/kwallet/konfigurator/konfigurator.cpp
index 3506f58..dd03591 100644
--- a/kwallet/konfigurator/konfigurator.cpp
+++ b/kwallet/konfigurator/konfigurator.cpp
@@ -41,7 +41,7 @@ typedef KGenericFactory<KWalletConfig, TQWidget> KWalletFactory;
K_EXPORT_COMPONENT_FACTORY(kcm_kwallet, KWalletFactory("kcmkwallet"))
KWalletConfig::KWalletConfig(TQWidget *parent, const char *name, const TQStringList&)
-: KCModule(KWalletFactory::instance(), parent, name) {
+: TDECModule(KWalletFactory::instance(), parent, name) {
TDEAboutData *about =
new TDEAboutData(I18N_NOOP("kcmkwallet"),
@@ -51,7 +51,7 @@ KWalletConfig::KWalletConfig(TQWidget *parent, const char *name, const TQStringL
about->addAuthor("George Staikos", 0, "staikos@kde.org");
setAboutData( about );
- _cfg = new KConfig("kwalletrc", false, false);
+ _cfg = new TDEConfig("kwalletrc", false, false);
TQVBoxLayout *vbox = new TQVBoxLayout(this, 0, KDialog::spacingHint());
vbox->add(_wcw = new WalletConfigWidget(this));
@@ -182,7 +182,7 @@ void KWalletConfig::load() {
}
void KWalletConfig::load(bool useDefaults) {
- KConfigGroup config(_cfg, "Wallet");
+ TDEConfigGroup config(_cfg, "Wallet");
config.setReadDefaults( useDefaults );
_wcw->_enabled->setChecked(config.readBoolEntry("Enabled", true));
_wcw->_openPrompt->setChecked(config.readBoolEntry("Prompt on Open", true));
@@ -235,7 +235,7 @@ void KWalletConfig::load(bool useDefaults) {
void KWalletConfig::save() {
- KConfigGroup config(_cfg, "Wallet");
+ TDEConfigGroup config(_cfg, "Wallet");
config.writeEntry("Enabled", _wcw->_enabled->isChecked());
config.writeEntry("Launch Manager", _wcw->_launchManager->isChecked());
config.writeEntry("Leave Manager Open", !_wcw->_autocloseManager->isChecked());
diff --git a/kwallet/konfigurator/konfigurator.h b/kwallet/konfigurator/konfigurator.h
index 28fef08..5b833ba 100644
--- a/kwallet/konfigurator/konfigurator.h
+++ b/kwallet/konfigurator/konfigurator.h
@@ -22,11 +22,11 @@
#include <kcmodule.h>
-class KConfig;
+class TDEConfig;
class WalletConfigWidget;
class TQListViewItem;
-class KWalletConfig : public KCModule {
+class KWalletConfig : public TDECModule {
Q_OBJECT
public:
@@ -52,7 +52,7 @@ class KWalletConfig : public KCModule {
private:
WalletConfigWidget *_wcw;
- KConfig *_cfg;
+ TDEConfig *_cfg;
};
#endif