aboutsummaryrefslogtreecommitdiffstats
path: root/calendar/gui/dialogs
diff options
context:
space:
mode:
Diffstat (limited to 'calendar/gui/dialogs')
-rw-r--r--calendar/gui/dialogs/comp-editor.c2
-rw-r--r--calendar/gui/dialogs/event-editor.c7
-rw-r--r--calendar/gui/dialogs/task-editor.c7
3 files changed, 11 insertions, 5 deletions
diff --git a/calendar/gui/dialogs/comp-editor.c b/calendar/gui/dialogs/comp-editor.c
index 14bee4e9a7..7615e79589 100644
--- a/calendar/gui/dialogs/comp-editor.c
+++ b/calendar/gui/dialogs/comp-editor.c
@@ -852,7 +852,7 @@ real_send_comp (CompEditor *editor, CalComponentItipMethod method)
priv = editor->priv;
- itip_send_comp (method, priv->comp);
+ itip_send_comp (method, priv->comp, priv->client, NULL);
}
diff --git a/calendar/gui/dialogs/event-editor.c b/calendar/gui/dialogs/event-editor.c
index 9e6f501efe..4c0862c9f7 100644
--- a/calendar/gui/dialogs/event-editor.c
+++ b/calendar/gui/dialogs/event-editor.c
@@ -299,8 +299,11 @@ event_editor_send_comp (CompEditor *editor, CalComponentItipMethod method)
goto parent;
comp = meeting_page_get_cancel_comp (priv->meet_page);
- if (comp != NULL) {
- itip_send_comp (CAL_COMPONENT_METHOD_CANCEL, comp);
+ if (comp != NULL) {
+ CalClient *client;
+
+ client = e_meeting_model_get_cal_client (priv->model);
+ itip_send_comp (CAL_COMPONENT_METHOD_CANCEL, comp, client, NULL);
gtk_object_unref (GTK_OBJECT (comp));
}
diff --git a/calendar/gui/dialogs/task-editor.c b/calendar/gui/dialogs/task-editor.c
index e59582873f..c5c4d61826 100644
--- a/calendar/gui/dialogs/task-editor.c
+++ b/calendar/gui/dialogs/task-editor.c
@@ -261,8 +261,11 @@ task_editor_send_comp (CompEditor *editor, CalComponentItipMethod method)
goto parent;
comp = meeting_page_get_cancel_comp (priv->meet_page);
- if (comp != NULL) {
- itip_send_comp (CAL_COMPONENT_METHOD_CANCEL, comp);
+ if (comp != NULL) {
+ CalClient *client;
+
+ client = e_meeting_model_get_cal_client (priv->model);
+ itip_send_comp (CAL_COMPONENT_METHOD_CANCEL, comp, client, NULL);
gtk_object_unref (GTK_OBJECT (comp));
}