diff options
Diffstat (limited to 'libkcal/htmlexport.cpp')
-rw-r--r-- | libkcal/htmlexport.cpp | 6 |
1 files changed, 3 insertions, 3 deletions
diff --git a/libkcal/htmlexport.cpp b/libkcal/htmlexport.cpp index 2b538574a..24aa925c4 100644 --- a/libkcal/htmlexport.cpp +++ b/libkcal/htmlexport.cpp @@ -557,10 +557,10 @@ void HtmlExport::formatAttendees( TQTextStream *ts, Incidence *event ) if (attendees.count()) { *ts << "<em>"; #ifndef KORG_NOKABC - KABC::AddressBook *add_book = KABC::StdAddressBook::self( true ); - KABC::Addressee::List addressList; + TDEABC::AddressBook *add_book = TDEABC::StdAddressBook::self( true ); + TDEABC::Addressee::List addressList; addressList = add_book->findByEmail(event->organizer().email()); - KABC::Addressee o = addressList.first(); + TDEABC::Addressee o = addressList.first(); if (!o.isEmpty() && addressList.size()<2) { *ts << "<a href=\"mailto:" << event->organizer().email() << "\">"; *ts << cleanChars(o.formattedName()) << "</a>\n"; |