author | zautrix <zautrix> | 2005-06-29 21:26:43 (UTC) |
---|---|---|
committer | zautrix <zautrix> | 2005-06-29 21:26:43 (UTC) |
commit | 7ccfe9b674bd5cc52eab708c2e7dfb02c3328deb (patch) (unidiff) | |
tree | 4083b66180ee5385ee12dc2a9e03ef26e78f1f58 | |
parent | d1ca2fd41cb1390843c974c985cae5912d458d51 (diff) | |
download | kdepimpi-7ccfe9b674bd5cc52eab708c2e7dfb02c3328deb.zip kdepimpi-7ccfe9b674bd5cc52eab708c2e7dfb02c3328deb.tar.gz kdepimpi-7ccfe9b674bd5cc52eab708c2e7dfb02c3328deb.tar.bz2 |
fixx
-rw-r--r-- | korganizer/koimportoldialog.cpp | 2 |
1 files changed, 1 insertions, 1 deletions
diff --git a/korganizer/koimportoldialog.cpp b/korganizer/koimportoldialog.cpp index c4d5f06..7aa6076 100644 --- a/korganizer/koimportoldialog.cpp +++ b/korganizer/koimportoldialog.cpp | |||
@@ -453,34 +453,34 @@ void KOImportOLdialog::ol2kopiCalendar( _AppointmentItem * aItem, bool computeRe | |||
453 | mail = mail.stripWhiteSpace(); | 453 | mail = mail.stripWhiteSpace(); |
454 | 454 | ||
455 | QString uid = getUidByEmail( mail ); | 455 | QString uid = getUidByEmail( mail ); |
456 | //uid = QString::fromUcs2( pItem->GetEntryID().GetBuffer()); | 456 | //uid = QString::fromUcs2( pItem->GetEntryID().GetBuffer()); |
457 | KCal::Attendee * a = new KCal::Attendee( name, mail,rsvp,stat,role,uid) ; | 457 | KCal::Attendee * a = new KCal::Attendee( name, mail,rsvp,stat,role,uid) ; |
458 | event->addAttendee( a , false ); | 458 | event->addAttendee( a , false ); |
459 | itm->Release(); | 459 | itm->Release(); |
460 | } | 460 | } |
461 | 461 | ||
462 | 462 | ||
463 | if ( !mCalendar->addEventNoDup( event )) | 463 | if ( !mCalendar->addEventNoDup( event )) |
464 | delete event; | 464 | delete event; |
465 | else { | 465 | else { |
466 | // QString mes = i18n("Importing %1.\n date: %2 date: %3").arg( event->summary()).arg( event->dtStart().toString()).arg( event->dtEnd().toString()); | 466 | // QString mes = i18n("Importing %1.\n date: %2 date: %3").arg( event->summary()).arg( event->dtStart().toString()).arg( event->dtEnd().toString()); |
467 | //KMessageBox::information(this,mes); | 467 | //KMessageBox::information(this,mes); |
468 | ++importedItems; | 468 | ++importedItems; |
469 | } | 469 | } |
470 | } | 470 | } |
471 | void KOImportOLdialog::slotCancel() | 471 | void KOImportOLdialog::slotCancel() |
472 | { | 472 | { |
473 | reject(); | 473 | reject(); |
474 | } | 474 | } |
475 | 475 | ||
476 | QString KOImportOLdialog::getUidByEmail( QString email ) | 476 | QString KOImportOLdialog::getUidByEmail( QString email ) |
477 | { | 477 | { |
478 | KABC::StdAddressBook* AddressBook = KABC::StdAddressBook::self( true ); | 478 | KABC::StdAddressBook* AddressBook = KABC::StdAddressBook::self( true ); |
479 | KABC::AddressBook::Iterator it; | 479 | KABC::AddressBook::Iterator it; |
480 | for( it = AddressBook->begin(); it != AddressBook->end(); ++it ) { | 480 | for( it = AddressBook->begin(); it != AddressBook->end(); ++it ) { |
481 | QStringList em = (*it).emails(); | 481 | QStringList em = (*it).emails(); |
482 | if ( em.contains( email )) | 482 | if ( em.contains( email )) |
483 | return (*it).uid(); | 483 | return (*it).uid(); |
484 | } | 484 | } |
485 | return ""; | 485 | return email; |
486 | } | 486 | } |