summaryrefslogtreecommitdiffstats
path: root/kopete/protocols/winpopup/wpeditaccount.cpp
diff options
context:
space:
mode:
Diffstat (limited to 'kopete/protocols/winpopup/wpeditaccount.cpp')
-rw-r--r--kopete/protocols/winpopup/wpeditaccount.cpp12
1 files changed, 6 insertions, 6 deletions
diff --git a/kopete/protocols/winpopup/wpeditaccount.cpp b/kopete/protocols/winpopup/wpeditaccount.cpp
index 217ac462..0e0b6f43 100644
--- a/kopete/protocols/winpopup/wpeditaccount.cpp
+++ b/kopete/protocols/winpopup/wpeditaccount.cpp
@@ -58,9 +58,9 @@ WPEditAccount::WPEditAccount(TQWidget *parent, Kopete::Account *theAccount)
mHostName->setText(account()->accountId());
// mAutoConnect->setChecked(account()->excludeConnect());
mHostName->setReadOnly(true);
- KGlobal::config()->setGroup("WinPopup");
- mHostCheckFreq->setValue(KGlobal::config()->readNumEntry("HostCheckFreq", 60));
- mSmbcPath->setURL(KGlobal::config()->readEntry("SmbcPath", tmpSmbcPath));
+ TDEGlobal::config()->setGroup("WinPopup");
+ mHostCheckFreq->setValue(TDEGlobal::config()->readNumEntry("HostCheckFreq", 60));
+ mSmbcPath->setURL(TDEGlobal::config()->readEntry("SmbcPath", tmpSmbcPath));
}
else {
@@ -112,9 +112,9 @@ bool WPEditAccount::validateData()
void WPEditAccount::writeConfig()
{
- KGlobal::config()->setGroup("WinPopup");
- KGlobal::config()->writeEntry("SmbcPath", mSmbcPath->url());
- KGlobal::config()->writeEntry("HostCheckFreq", mHostCheckFreq->text());
+ TDEGlobal::config()->setGroup("WinPopup");
+ TDEGlobal::config()->writeEntry("SmbcPath", mSmbcPath->url());
+ TDEGlobal::config()->writeEntry("HostCheckFreq", mHostCheckFreq->text());
}
Kopete::Account *WPEditAccount::apply()