diff options
author | Timothy Pearson <[email protected]> | 2013-02-20 16:27:19 -0600 |
---|---|---|
committer | Timothy Pearson <[email protected]> | 2013-02-20 16:27:19 -0600 |
commit | abed891d4e05028ca7fdfa1aecb047d2cc9e3da9 (patch) | |
tree | 3886579911eba100500e673e5c994dbcae42a6d2 /kopete/libkopete/kopetemetacontact.cpp | |
parent | 795ed72fdb980600d4da57fdf9e689cdbbfc9a9a (diff) | |
download | tdenetwork-abed891d4e05028ca7fdfa1aecb047d2cc9e3da9.tar.gz tdenetwork-abed891d4e05028ca7fdfa1aecb047d2cc9e3da9.zip |
Rename KABC namespace
Diffstat (limited to 'kopete/libkopete/kopetemetacontact.cpp')
-rw-r--r-- | kopete/libkopete/kopetemetacontact.cpp | 24 |
1 files changed, 12 insertions, 12 deletions
diff --git a/kopete/libkopete/kopetemetacontact.cpp b/kopete/libkopete/kopetemetacontact.cpp index fb34e892..65d61106 100644 --- a/kopete/libkopete/kopetemetacontact.cpp +++ b/kopete/libkopete/kopetemetacontact.cpp @@ -639,13 +639,13 @@ TQString MetaContact::displayName() const TQString nameFromKABC( const TQString &id ) /*const*/ { - KABC::AddressBook* ab = KABCPersistence::self()->addressBook(); + TDEABC::AddressBook* ab = KABCPersistence::self()->addressBook(); if ( ! id.isEmpty() && !id.contains(':') ) { - KABC::Addressee theAddressee = ab->findByUid(id); + TDEABC::Addressee theAddressee = ab->findByUid(id); if ( theAddressee.isEmpty() ) { - kdDebug( 14010 ) << k_funcinfo << "no KABC::Addressee found for ( " << id << " ) " << " in current address book" << endl; + kdDebug( 14010 ) << k_funcinfo << "no TDEABC::Addressee found for ( " << id << " ) " << " in current address book" << endl; } else { @@ -738,17 +738,17 @@ TQImage photoFromContact( Kopete::Contact *contact) /*const*/ TQImage photoFromKABC( const TQString &id ) /*const*/ { - KABC::AddressBook* ab = KABCPersistence::self()->addressBook(); + TDEABC::AddressBook* ab = KABCPersistence::self()->addressBook(); if ( ! id.isEmpty() && !id.contains(':') ) { - KABC::Addressee theAddressee = ab->findByUid(id); + TDEABC::Addressee theAddressee = ab->findByUid(id); if ( theAddressee.isEmpty() ) { - kdDebug( 14010 ) << k_funcinfo << "no KABC::Addressee found for ( " << id << " ) " << " in current address book" << endl; + kdDebug( 14010 ) << k_funcinfo << "no TDEABC::Addressee found for ( " << id << " ) " << " in current address book" << endl; } else { - KABC::Picture pic = theAddressee.photo(); + TDEABC::Picture pic = theAddressee.photo(); if ( pic.data().isNull() && pic.url().isEmpty() ) pic = theAddressee.logo(); @@ -1289,18 +1289,18 @@ void MetaContact::slotAllPluginsLoaded() void MetaContact::slotUpdateAddressBookPicture() { - KABC::AddressBook* ab = KABCPersistence::self()->addressBook(); + TDEABC::AddressBook* ab = KABCPersistence::self()->addressBook(); TQString id = metaContactId(); if ( !id.isEmpty() && !id.contains(':') ) { - KABC::Addressee theAddressee = ab->findByUid(id); + TDEABC::Addressee theAddressee = ab->findByUid(id); if ( theAddressee.isEmpty() ) { - kdDebug( 14010 ) << k_funcinfo << "no KABC::Addressee found for ( " << id << " ) " << " in current address book" << endl; + kdDebug( 14010 ) << k_funcinfo << "no TDEABC::Addressee found for ( " << id << " ) " << " in current address book" << endl; } else { - KABC::Picture pic = theAddressee.photo(); + TDEABC::Picture pic = theAddressee.photo(); if ( pic.data().isNull() && pic.url().isEmpty() ) pic = theAddressee.logo(); @@ -1398,7 +1398,7 @@ void MetaContact::setPhotoSyncedWithKABC(bool b) if ( !d->metaContactId.isEmpty() && !newValue.isNull()) { - KABC::Addressee theAddressee = KABCPersistence::self()->addressBook()->findByUid( metaContactId() ); + TDEABC::Addressee theAddressee = KABCPersistence::self()->addressBook()->findByUid( metaContactId() ); if ( !theAddressee.isEmpty() ) { |