diff options
author | Chenthill Palanisamy <pchen@src.gnome.org> | 2005-12-15 15:46:25 +0800 |
---|---|---|
committer | Chenthill Palanisamy <pchen@src.gnome.org> | 2005-12-15 15:46:25 +0800 |
commit | f0a4b74f5e8402cb443c994db8df179b841c3a4b (patch) | |
tree | e9a47c2afb26d8bdd69beaac0c39e0e0204daffa /calendar/gui/dialogs | |
parent | 37837176219e147d3ee06930415b9fc431c20787 (diff) | |
download | gsoc2013-evolution-f0a4b74f5e8402cb443c994db8df179b841c3a4b.tar.gz gsoc2013-evolution-f0a4b74f5e8402cb443c994db8df179b841c3a4b.tar.zst gsoc2013-evolution-f0a4b74f5e8402cb443c994db8df179b841c3a4b.zip |
fixes #321739
svn path=/trunk/; revision=30779
Diffstat (limited to 'calendar/gui/dialogs')
-rw-r--r-- | calendar/gui/dialogs/event-page.c | 6 |
1 files changed, 3 insertions, 3 deletions
diff --git a/calendar/gui/dialogs/event-page.c b/calendar/gui/dialogs/event-page.c index a099d8daef..c2c3b11889 100644 --- a/calendar/gui/dialogs/event-page.c +++ b/calendar/gui/dialogs/event-page.c @@ -1021,13 +1021,10 @@ event_page_fill_widgets (CompEditorPage *page, ECalComponent *comp) if (organizer.value != NULL) { const gchar *strip = itip_strip_mailto (organizer.value); gchar *string; - // gtk_widget_hide (priv->organizer_table); - // gtk_widget_show (priv->existing_organizer_table); if (itip_organizer_is_user (comp, page->client)) { if (e_cal_get_static_capability ( page->client, CAL_STATIC_CAPABILITY_ORGANIZER_NOT_EMAIL_ADDRESS)) - // gtk_widget_hide (priv->existing_organizer_btn); priv->user_org = TRUE; } else { if (e_cal_get_static_capability ( @@ -1064,6 +1061,7 @@ event_page_fill_widgets (CompEditorPage *page, ECalComponent *comp) e_meeting_attendee_set_status (priv->ia, ICAL_PARTSTAT_NEEDSACTION); else e_meeting_attendee_set_status (priv->ia, ICAL_PARTSTAT_ACCEPTED); + e_meeting_list_view_add_attendee_to_name_selector (E_MEETING_LIST_VIEW (priv->list_view), priv->ia); } } } @@ -1724,6 +1722,8 @@ remove_attendee (EventPage *epage, EMeetingAttendee *ia) if (e_meeting_attendee_get_delto (ia) != NULL) ib = e_meeting_store_find_attendee (priv->model, e_meeting_attendee_get_delto (ia), NULL); + + e_meeting_list_view_remove_attendee_from_name_selector (priv->list_view, ia); e_meeting_store_remove_attendee (priv->model, ia); ia = ib; |