diff options
Diffstat (limited to 'kaddressbook/addresseeutil.h')
-rw-r--r-- | kaddressbook/addresseeutil.h | 14 |
1 files changed, 7 insertions, 7 deletions
diff --git a/kaddressbook/addresseeutil.h b/kaddressbook/addresseeutil.h index ed84512ff..0b68069be 100644 --- a/kaddressbook/addresseeutil.h +++ b/kaddressbook/addresseeutil.h @@ -36,19 +36,19 @@ NOTE: Currently these methods are not implemented properly. The vCard parser in KABC needs to be updated and there is no way to get from - KABC::Addressee to vCard. + TDEABC::Addressee to vCard. */ class AddresseeUtil { public: /** - Same as above function, except that an entire list of KABC::Addressee + Same as above function, except that an entire list of TDEABC::Addressee objects will be converted to vCard and put in the string. */ #if defined(KABC_VCARD_ENCODING_FIX) - static TQByteArray addresseesToClipboard( const KABC::Addressee::List &addrList ); + static TQByteArray addresseesToClipboard( const TDEABC::Addressee::List &addrList ); #else - static TQString addresseesToClipboard( const KABC::Addressee::List &addrList ); + static TQString addresseesToClipboard( const TDEABC::Addressee::List &addrList ); #endif /** @@ -57,15 +57,15 @@ class AddresseeUtil will be returned. */ #if defined(KABC_VCARD_ENCODING_FIX) - static KABC::Addressee::List clipboardToAddressees( const TQByteArray &clipboard ); + static TDEABC::Addressee::List clipboardToAddressees( const TQByteArray &clipboard ); #else - static KABC::Addressee::List clipboardToAddressees( const TQString &clipboard ); + static TDEABC::Addressee::List clipboardToAddressees( const TQString &clipboard ); #endif /** Converts the list of addressee objects into a list of email addresses. */ - static TQString addresseesToEmails( const KABC::Addressee::List &addrList ); + static TQString addresseesToEmails( const TDEABC::Addressee::List &addrList ); private: AddresseeUtil() {} |