diff options
Diffstat (limited to 'calendar/modules/e-memo-shell-view-actions.c')
-rw-r--r-- | calendar/modules/e-memo-shell-view-actions.c | 6 |
1 files changed, 3 insertions, 3 deletions
diff --git a/calendar/modules/e-memo-shell-view-actions.c b/calendar/modules/e-memo-shell-view-actions.c index 98f8569425..4f487b7e7d 100644 --- a/calendar/modules/e-memo-shell-view-actions.c +++ b/calendar/modules/e-memo-shell-view-actions.c @@ -109,7 +109,6 @@ action_memo_forward_cb (GtkAction *action, ECalModelComponent *comp_data; ECalComponent *comp; icalcomponent *clone; - ECalComponentItipMethod method; GSList *list; memo_shell_content = memo_shell_view->priv->memo_shell_content; @@ -123,9 +122,10 @@ action_memo_forward_cb (GtkAction *action, /* XXX We only forward the first selected memo. */ comp = e_cal_component_new (); clone = icalcomponent_new_clone (comp_data->icalcomp); - method = E_CAL_COMPONENT_METHOD_PUBLISH; e_cal_component_set_icalcomponent (comp, clone); - itip_send_comp (method, comp, comp_data->client, NULL, NULL, NULL); + itip_send_comp ( + E_CAL_COMPONENT_METHOD_PUBLISH, comp, + comp_data->client, NULL, NULL, NULL, TRUE); g_object_unref (comp); } |