diff options
Diffstat (limited to 'kaddressbook/thumbnailcreator/ldifvcardcreator.cpp')
-rw-r--r-- | kaddressbook/thumbnailcreator/ldifvcardcreator.cpp | 18 |
1 files changed, 9 insertions, 9 deletions
diff --git a/kaddressbook/thumbnailcreator/ldifvcardcreator.cpp b/kaddressbook/thumbnailcreator/ldifvcardcreator.cpp index a0c557d1b..44e4684f8 100644 --- a/kaddressbook/thumbnailcreator/ldifvcardcreator.cpp +++ b/kaddressbook/thumbnailcreator/ldifvcardcreator.cpp @@ -84,10 +84,10 @@ bool VCard_LDIFCreator::readContents( const TQString &path ) #endif file.close(); - // convert the file contents to a KABC::Addressee address - KABC::AddresseeList addrList; - KABC::Addressee addr; - KABC::VCardConverter converter; + // convert the file contents to a TDEABC::Addressee address + TDEABC::AddresseeList addrList; + TDEABC::Addressee addr; + TDEABC::VCardConverter converter; #if defined(KABC_VCARD_ENCODING_FIX) addrList = converter.parseVCardsRaw( contentsRaw ); @@ -95,7 +95,7 @@ bool VCard_LDIFCreator::readContents( const TQString &path ) addrList = converter.parseVCards( contents ); #endif if ( addrList.count() == 0 ) - if ( !KABC::LDIFConverter::LDIFToAddressee( contents, addrList ) ) + if ( !TDEABC::LDIFConverter::LDIFToAddressee( contents, addrList ) ) return false; if ( addrList.count()>1 ) { // create an overview (list of all names) @@ -126,7 +126,7 @@ bool VCard_LDIFCreator::readContents( const TQString &path ) name = name.simplifyWhiteSpace(); - KABC::PhoneNumber::List pnList = addr.phoneNumbers(); + TDEABC::PhoneNumber::List pnList = addr.phoneNumbers(); TQStringList phoneNumbers; for (unsigned int no=0; no<pnList.count(); ++no) { TQString pn = pnList[no].number().simplifyWhiteSpace(); @@ -141,11 +141,11 @@ bool VCard_LDIFCreator::readContents( const TQString &path ) text += info + "\n"; // get an address - KABC::Address address = addr.address(KABC::Address::Work); + TDEABC::Address address = addr.address(TDEABC::Address::Work); if (address.isEmpty()) - address = addr.address(KABC::Address::Home); + address = addr.address(TDEABC::Address::Home); if (address.isEmpty()) - address = addr.address(KABC::Address::Pref); + address = addr.address(TDEABC::Address::Pref); info = address.formattedAddress(); if ( !info.isEmpty() ) text += info + "\n"; |