diff options
author | Chenthill Palanisamy <pchen@src.gnome.org> | 2005-10-01 19:05:13 +0800 |
---|---|---|
committer | Chenthill Palanisamy <pchen@src.gnome.org> | 2005-10-01 19:05:13 +0800 |
commit | 753b2421e18cbf69628e9552fb672fcdc2975e06 (patch) | |
tree | d9229119c2dac013b77475a246e1b1c36b1b94e1 /calendar | |
parent | 819ed96981b41f8e1daa6ac4b4003600c5cfcf3b (diff) | |
download | gsoc2013-evolution-753b2421e18cbf69628e9552fb672fcdc2975e06.tar.gz gsoc2013-evolution-753b2421e18cbf69628e9552fb672fcdc2975e06.tar.zst gsoc2013-evolution-753b2421e18cbf69628e9552fb672fcdc2975e06.zip |
fixes 316954.
svn path=/trunk/; revision=30460
Diffstat (limited to 'calendar')
-rw-r--r-- | calendar/ChangeLog | 6 | ||||
-rw-r--r-- | calendar/gui/e-calendar-view.c | 2 |
2 files changed, 7 insertions, 1 deletions
diff --git a/calendar/ChangeLog b/calendar/ChangeLog index 9c1c6e406c..92df29159c 100644 --- a/calendar/ChangeLog +++ b/calendar/ChangeLog @@ -1,5 +1,11 @@ 2005-10-01 Chenthill Palanisamy <pchenthill@novell.com> + Fixes #316954 + * gui/e-calendar-view.c: (e_calendar_view_edit_appointment): Set + the USER_ORG flag if the appointment is converted to a meeting. + +2005-10-01 Chenthill Palanisamy <pchenthill@novell.com> + Fixes #301391 * gui/e-calendar-view.c: (clipboard_get_text_cb): Remove the X-EVOLUTION-ENDDATE property, so that diff --git a/calendar/gui/e-calendar-view.c b/calendar/gui/e-calendar-view.c index cfc9d755a2..a05b2ffe8e 100644 --- a/calendar/gui/e-calendar-view.c +++ b/calendar/gui/e-calendar-view.c @@ -1824,7 +1824,7 @@ e_calendar_view_edit_appointment (ECalendarView *cal_view, ECalComponent *comp = e_cal_component_new (); e_cal_component_set_icalcomponent (comp, icalcomponent_new_clone (icalcomp)); flags |= COMP_EDITOR_MEETING; - if (itip_organizer_is_user (comp, client)) + if (itip_organizer_is_user (comp, client) || !e_cal_component_has_attendees (comp)) flags |= COMP_EDITOR_USER_ORG; g_object_unref (comp); } |