summaryrefslogtreecommitdiffabout
path: root/korganizer/koeditordetails.cpp
authorzautrix <zautrix>2005-06-18 10:40:53 (UTC)
committer zautrix <zautrix>2005-06-18 10:40:53 (UTC)
commit3c6bc55a0c7abf758df57bbb3dc0842bd6b87e6c (patch) (side-by-side diff)
treebb721da362282858a047659ac1d0c6780a8b15f5 /korganizer/koeditordetails.cpp
parent2cbe93f970eddb6b61d3fc42ccff1a500e806723 (diff)
downloadkdepimpi-3c6bc55a0c7abf758df57bbb3dc0842bd6b87e6c.zip
kdepimpi-3c6bc55a0c7abf758df57bbb3dc0842bd6b87e6c.tar.gz
kdepimpi-3c6bc55a0c7abf758df57bbb3dc0842bd6b87e6c.tar.bz2
fixx
Diffstat (limited to 'korganizer/koeditordetails.cpp') (more/less context) (ignore whitespace changes)
-rw-r--r--korganizer/koeditordetails.cpp12
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
@@ -65,10 +65,14 @@ void CustomListViewItem<class Attendee *>::updateItem()
setText(1,mData->email());
setText(2,mData->roleStr());
setText(3,mData->statusStr());
- if (mData->RSVP() && !mData->email().isEmpty())
+ if (mData->RSVP() && !mData->email().isEmpty()) {
setPixmap(4,SmallIcon("mailappt"));
- else
+ setSortKey(4,"j");
+ }
+ else {
setPixmap(4,SmallIcon("nomailappt"));
+ setSortKey(4,"n");
+ }
}
@@ -467,8 +471,10 @@ void KOEditorDetails::updateAttendeeItem()
a->setName( mNameEdit->text() );
a->setUid( mUidEdit->text() );
a->setEmail( mEmailEdit->text() );
+ if ( mEmailEdit->text().isEmpty() )
+ mRsvpButton->setChecked( false );
+ a->setRSVP( mRsvpButton->isChecked() );
a->setRole( Attendee::Role( mRoleCombo->currentItem() ) );
a->setStatus( Attendee::PartStat( mStatusCombo->currentItem() ) );
- a->setRSVP( mRsvpButton->isChecked() );
aItem->updateItem();
}