-rw-r--r-- | korganizer/koeditordetails.cpp | 12 |
1 files changed, 9 insertions, 3 deletions
diff --git a/korganizer/koeditordetails.cpp b/korganizer/koeditordetails.cpp index 6ecf978..7354940 100644 --- a/korganizer/koeditordetails.cpp +++ b/korganizer/koeditordetails.cpp | |||
@@ -64,12 +64,16 @@ void CustomListViewItem<class Attendee *>::updateItem() | |||
64 | setText(0,mData->name()); | 64 | setText(0,mData->name()); |
65 | setText(1,mData->email()); | 65 | setText(1,mData->email()); |
66 | setText(2,mData->roleStr()); | 66 | setText(2,mData->roleStr()); |
67 | setText(3,mData->statusStr()); | 67 | setText(3,mData->statusStr()); |
68 | if (mData->RSVP() && !mData->email().isEmpty()) | 68 | if (mData->RSVP() && !mData->email().isEmpty()) { |
69 | setPixmap(4,SmallIcon("mailappt")); | 69 | setPixmap(4,SmallIcon("mailappt")); |
70 | else | 70 | setSortKey(4,"j"); |
71 | } | ||
72 | else { | ||
71 | setPixmap(4,SmallIcon("nomailappt")); | 73 | setPixmap(4,SmallIcon("nomailappt")); |
74 | setSortKey(4,"n"); | ||
75 | } | ||
72 | } | 76 | } |
73 | 77 | ||
74 | 78 | ||
75 | KOEditorDetails::KOEditorDetails (int spacing,QWidget* parent,const char* name) | 79 | KOEditorDetails::KOEditorDetails (int spacing,QWidget* parent,const char* name) |
@@ -466,9 +470,11 @@ void KOEditorDetails::updateAttendeeItem() | |||
466 | 470 | ||
467 | a->setName( mNameEdit->text() ); | 471 | a->setName( mNameEdit->text() ); |
468 | a->setUid( mUidEdit->text() ); | 472 | a->setUid( mUidEdit->text() ); |
469 | a->setEmail( mEmailEdit->text() ); | 473 | a->setEmail( mEmailEdit->text() ); |
474 | if ( mEmailEdit->text().isEmpty() ) | ||
475 | mRsvpButton->setChecked( false ); | ||
476 | a->setRSVP( mRsvpButton->isChecked() ); | ||
470 | a->setRole( Attendee::Role( mRoleCombo->currentItem() ) ); | 477 | a->setRole( Attendee::Role( mRoleCombo->currentItem() ) ); |
471 | a->setStatus( Attendee::PartStat( mStatusCombo->currentItem() ) ); | 478 | a->setStatus( Attendee::PartStat( mStatusCombo->currentItem() ) ); |
472 | a->setRSVP( mRsvpButton->isChecked() ); | ||
473 | aItem->updateItem(); | 479 | aItem->updateItem(); |
474 | } | 480 | } |