diff options
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() ) { |