author | zautrix <zautrix> | 2004-07-12 13:32:09 (UTC) |
---|---|---|
committer | zautrix <zautrix> | 2004-07-12 13:32:09 (UTC) |
commit | 915a3b162dea2755ec1c8267a9c9f65709bce602 (patch) (unidiff) | |
tree | 75b3d15a2386a4da7ab790a1f249ff811a7a7ae8 /korganizer | |
parent | cbc789907408fa3359444c464ba5a86be892f301 (diff) | |
download | kdepimpi-915a3b162dea2755ec1c8267a9c9f65709bce602.zip kdepimpi-915a3b162dea2755ec1c8267a9c9f65709bce602.tar.gz kdepimpi-915a3b162dea2755ec1c8267a9c9f65709bce602.tar.bz2 |
Another win import fix
-rw-r--r-- | korganizer/koimportoldialog.cpp | 21 | ||||
-rw-r--r-- | korganizer/koimportoldialog.h | 1 |
2 files changed, 17 insertions, 5 deletions
diff --git a/korganizer/koimportoldialog.cpp b/korganizer/koimportoldialog.cpp index 36363e5..16f2eca 100644 --- a/korganizer/koimportoldialog.cpp +++ b/korganizer/koimportoldialog.cpp | |||
@@ -45,8 +45,9 @@ | |||
45 | #include <libkdepim/kinputdialog.h> | 45 | #include <libkdepim/kinputdialog.h> |
46 | 46 | ||
47 | #include <libkcal/calendarlocal.h> | 47 | #include <libkcal/calendarlocal.h> |
48 | #include <libkcal/icalformat.h> | 48 | #include <libkcal/icalformat.h> |
49 | #include <kabc/stdaddressbook.h> | ||
49 | 50 | ||
50 | #include "koprefs.h" | 51 | #include "koprefs.h" |
51 | #include "koglobals.h" | 52 | #include "koglobals.h" |
52 | 53 | ||
@@ -439,14 +440,12 @@ void KOImportOLdialog::ol2kopiCalendar( _AppointmentItem * aItem, bool computeRe | |||
439 | role = KCal::Attendee::NonParticipant; | 440 | role = KCal::Attendee::NonParticipant; |
440 | QString mail = QString::fromUcs2(pItem->GetAddress().GetBuffer()); | 441 | QString mail = QString::fromUcs2(pItem->GetAddress().GetBuffer()); |
441 | if( mail.isEmpty() && name.find("@") > 0 ) | 442 | if( mail.isEmpty() && name.find("@") > 0 ) |
442 | mail = name; | 443 | mail = name; |
443 | QString uid; | ||
444 | if ( mail.isEmpty() ) | ||
445 | uid = QString::fromUcs2( pItem->GetEntryID().GetBuffer()); | ||
446 | else | ||
447 | uid = mail; | ||
448 | mail = mail.stripWhiteSpace(); | 444 | mail = mail.stripWhiteSpace(); |
445 | |||
446 | QString uid = getUidByEmail( mail ); | ||
447 | //uid = QString::fromUcs2( pItem->GetEntryID().GetBuffer()); | ||
449 | KCal::Attendee * a = new KCal::Attendee( name, mail,rsvp,stat,role,uid) ; | 448 | KCal::Attendee * a = new KCal::Attendee( name, mail,rsvp,stat,role,uid) ; |
450 | event->addAttendee( a , false ); | 449 | event->addAttendee( a , false ); |
451 | itm->Release(); | 450 | itm->Release(); |
452 | } | 451 | } |
@@ -463,4 +462,16 @@ void KOImportOLdialog::ol2kopiCalendar( _AppointmentItem * aItem, bool computeRe | |||
463 | void KOImportOLdialog::slotCancel() | 462 | void KOImportOLdialog::slotCancel() |
464 | { | 463 | { |
465 | reject(); | 464 | reject(); |
466 | } | 465 | } |
466 | |||
467 | QString KOImportOLdialog::getUidByEmail( QString email ) | ||
468 | { | ||
469 | KABC::StdAddressBook* AddressBook = KABC::StdAddressBook::self( true ); | ||
470 | KABC::AddressBook::Iterator it; | ||
471 | for( it = AddressBook->begin(); it != AddressBook->end(); ++it ) { | ||
472 | QStringList em = (*it).emails(); | ||
473 | if ( em.contains( email )) | ||
474 | return (*it).uid(); | ||
475 | } | ||
476 | return ""; | ||
477 | } | ||
diff --git a/korganizer/koimportoldialog.h b/korganizer/koimportoldialog.h index f6a753d..c8847c5 100644 --- a/korganizer/koimportoldialog.h +++ b/korganizer/koimportoldialog.h | |||
@@ -72,8 +72,9 @@ class KOImportOLdialog : public KDialogBase | |||
72 | void ol2kopiCalendar( _AppointmentItem * , bool computeRecurrence = true ); | 72 | void ol2kopiCalendar( _AppointmentItem * , bool computeRecurrence = true ); |
73 | 73 | ||
74 | Calendar *mCalendar; | 74 | Calendar *mCalendar; |
75 | QListView * mListView; | 75 | QListView * mListView; |
76 | QString getUidByEmail( QString email ); | ||
76 | 77 | ||
77 | private: | 78 | private: |
78 | int importedItems; | 79 | int importedItems; |
79 | }; | 80 | }; |