diff options
author | Milan Crha <mcrha@redhat.com> | 2010-12-07 00:17:44 +0800 |
---|---|---|
committer | Milan Crha <mcrha@redhat.com> | 2010-12-07 00:17:44 +0800 |
commit | 0efc5f6217100ce0b35404137629642346b2d51a (patch) | |
tree | 6a27c140e93fd2d8c1694deaf8c1b31111eef3fe /modules | |
parent | 750abd6bed42e55a26b972102132bca4e57473dd (diff) | |
download | gsoc2013-evolution-0efc5f6217100ce0b35404137629642346b2d51a.tar gsoc2013-evolution-0efc5f6217100ce0b35404137629642346b2d51a.tar.gz gsoc2013-evolution-0efc5f6217100ce0b35404137629642346b2d51a.tar.bz2 gsoc2013-evolution-0efc5f6217100ce0b35404137629642346b2d51a.tar.lz gsoc2013-evolution-0efc5f6217100ce0b35404137629642346b2d51a.tar.xz gsoc2013-evolution-0efc5f6217100ce0b35404137629642346b2d51a.tar.zst gsoc2013-evolution-0efc5f6217100ce0b35404137629642346b2d51a.zip |
Bug #627536 - Open meeting as meeting, not as appointment, in week view
Diffstat (limited to 'modules')
-rw-r--r-- | modules/calendar/e-cal-shell-view-actions.c | 3 |
1 files changed, 1 insertions, 2 deletions
diff --git a/modules/calendar/e-cal-shell-view-actions.c b/modules/calendar/e-cal-shell-view-actions.c index 7b9d88fc73..3417875803 100644 --- a/modules/calendar/e-cal-shell-view-actions.c +++ b/modules/calendar/e-cal-shell-view-actions.c @@ -1216,8 +1216,7 @@ edit_event_as (ECalShellView *cal_shell_view, gboolean as_meeting) } } - e_calendar_view_edit_appointment ( - calendar_view, client, icalcomp, as_meeting); + e_calendar_view_edit_appointment (calendar_view, client, icalcomp, as_meeting ? EDIT_EVENT_FORCE_MEETING : EDIT_EVENT_FORCE_APPOINTMENT); if (!as_meeting && icalcomp) { icalcomponent_free (icalcomp); |