diff options
author | Timothy Pearson <[email protected]> | 2013-01-24 13:48:31 -0600 |
---|---|---|
committer | Timothy Pearson <[email protected]> | 2013-01-24 13:48:31 -0600 |
commit | c48e769eb275917717e2b55eb869f7e559293ac8 (patch) | |
tree | 8f650b907e21c918b826f854dbe1c8174cc2c0c6 /kopete/protocols/winpopup/wpeditaccount.cpp | |
parent | 8011d84f483f3628f3f04ea5cb2c1c3c86b2dba7 (diff) | |
download | tdenetwork-c48e769eb275917717e2b55eb869f7e559293ac8.tar.gz tdenetwork-c48e769eb275917717e2b55eb869f7e559293ac8.zip |
Rename KGlobal, KProcess, and KClipboard to avoid conflicts with KDE4
Diffstat (limited to 'kopete/protocols/winpopup/wpeditaccount.cpp')
-rw-r--r-- | kopete/protocols/winpopup/wpeditaccount.cpp | 12 |
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() |