summaryrefslogtreecommitdiffstats
path: root/kopete/kopete/config/identity/kopeteidentityconfig.cpp
diff options
context:
space:
mode:
authorTimothy Pearson <kb9vqf@pearsoncomputing.net>2013-02-20 16:27:19 -0600
committerTimothy Pearson <kb9vqf@pearsoncomputing.net>2013-02-20 16:27:19 -0600
commitabed891d4e05028ca7fdfa1aecb047d2cc9e3da9 (patch)
tree3886579911eba100500e673e5c994dbcae42a6d2 /kopete/kopete/config/identity/kopeteidentityconfig.cpp
parent795ed72fdb980600d4da57fdf9e689cdbbfc9a9a (diff)
downloadtdenetwork-abed891d4e05028ca7fdfa1aecb047d2cc9e3da9.tar.gz
tdenetwork-abed891d4e05028ca7fdfa1aecb047d2cc9e3da9.zip
Rename KABC namespace
Diffstat (limited to 'kopete/kopete/config/identity/kopeteidentityconfig.cpp')
-rw-r--r--kopete/kopete/config/identity/kopeteidentityconfig.cpp8
1 files changed, 4 insertions, 4 deletions
diff --git a/kopete/kopete/config/identity/kopeteidentityconfig.cpp b/kopete/kopete/config/identity/kopeteidentityconfig.cpp
index 48269acf..619c138b 100644
--- a/kopete/kopete/config/identity/kopeteidentityconfig.cpp
+++ b/kopete/kopete/config/identity/kopeteidentityconfig.cpp
@@ -169,7 +169,7 @@ void KopeteIdentityConfig::load()
// Populate the photo contact ComboBOx
slotLoadPhotoSources();
- KABC::Addressee a = KABC::StdAddressBook::self()->whoAmI();
+ TDEABC::Addressee a = TDEABC::StdAddressBook::self()->whoAmI();
// Load the address book link
if (!a.isEmpty())
{
@@ -335,7 +335,7 @@ void KopeteIdentityConfig::slotLoadPhotoSources()
void KopeteIdentityConfig::slotEnableAndDisableWidgets()
{
- KABC::Addressee a = KABC::StdAddressBook::self()->whoAmI();
+ TDEABC::Addressee a = TDEABC::StdAddressBook::self()->whoAmI();
bool hasKABCLink = !a.isEmpty();
d->m_view->radioNicknameKABC->setEnabled(hasKABCLink);
@@ -503,12 +503,12 @@ void KopeteIdentityConfig::slotRemoveIdentity()
void KopeteIdentityConfig::slotChangeAddressee()
{
- KABC::Addressee a = Kopete::UI::AddressBookSelectorDialog::getAddressee(i18n("Addressbook Association"), i18n("Choose the person who is yourself."), d->myself->metaContactId(), this);
+ TDEABC::Addressee a = Kopete::UI::AddressBookSelectorDialog::getAddressee(i18n("Addressbook Association"), i18n("Choose the person who is yourself."), d->myself->metaContactId(), this);
if ( !a.isEmpty() )
{
d->m_view->lineAddressee->setText(a.realName());
- KABC::StdAddressBook::self()->setWhoAmI(a);
+ TDEABC::StdAddressBook::self()->setWhoAmI(a);
d->myself->setMetaContactId(a.uid());
}