diff options
Diffstat (limited to 'calendar/gui/e-week-view.c')
-rw-r--r-- | calendar/gui/e-week-view.c | 16 |
1 files changed, 11 insertions, 5 deletions
diff --git a/calendar/gui/e-week-view.c b/calendar/gui/e-week-view.c index aae7eb8a34..a42ff10181 100644 --- a/calendar/gui/e-week-view.c +++ b/calendar/gui/e-week-view.c @@ -3323,7 +3323,8 @@ e_week_view_on_editing_stopped (EWeekView *week_view, if (recur_component_dialog (event->comp, &mod, NULL)) { if (cal_client_update_object_with_mod (week_view->client, event->comp, mod) == CAL_CLIENT_RESULT_SUCCESS) { if (itip_organizer_is_user (event->comp, week_view->client) - && send_component_dialog (week_view->client, event->comp, FALSE)) + && send_component_dialog (gtk_widget_get_toplevel (week_view), + week_view->client, event->comp, FALSE)) itip_send_comp (CAL_COMPONENT_METHOD_REQUEST, event->comp, week_view->client, NULL); } else { @@ -3331,7 +3332,9 @@ e_week_view_on_editing_stopped (EWeekView *week_view, } } } else if (cal_client_update_object (week_view->client, event->comp) == CAL_CLIENT_RESULT_SUCCESS) { - if (itip_organizer_is_user (event->comp, week_view->client) && send_component_dialog (week_view->client, event->comp, FALSE)) + if (itip_organizer_is_user (event->comp, week_view->client) && + send_component_dialog (gtk_widget_get_toplevel (week_view), + week_view->client, event->comp, FALSE)) itip_send_comp (CAL_COMPONENT_METHOD_REQUEST, event->comp, week_view->client, NULL); } else { @@ -3971,7 +3974,8 @@ e_week_view_delete_event_internal (EWeekView *week_view, gint event_num) const char *uid; if (itip_organizer_is_user (event->comp, week_view->client) - && cancel_component_dialog (week_view->client, event->comp, TRUE)) + && cancel_component_dialog ((GtkWindow *) gtk_widget_get_toplevel (week_view), + week_view->client, event->comp, TRUE)) itip_send_comp (CAL_COMPONENT_METHOD_CANCEL, event->comp, week_view->client, NULL); cal_component_get_uid (event->comp, &uid); @@ -4081,7 +4085,8 @@ e_week_view_on_cut (GtkWidget *widget, gpointer data) week_view->popup_event_num); if (itip_organizer_is_user (event->comp, week_view->client) - && cancel_component_dialog (week_view->client, event->comp, TRUE)) + && cancel_component_dialog ((GtkWindow *) gtk_widget_get_toplevel (week_view), + week_view->client, event->comp, TRUE)) itip_send_comp (CAL_COMPONENT_METHOD_CANCEL, event->comp, week_view->client, NULL); cal_component_get_uid (event->comp, &uid); @@ -4420,7 +4425,8 @@ selection_received (GtkWidget *invisible, cal_client_update_object (week_view->client, comp); - if (itip_organizer_is_user (comp, week_view->client) && send_component_dialog (week_view->client, comp, TRUE)) + if (itip_organizer_is_user (comp, week_view->client) && + send_component_dialog (gtk_widget_get_toplevel (week_view), week_view->client, comp, TRUE)) itip_send_comp (CAL_COMPONENT_METHOD_REQUEST, comp, week_view->client, NULL); g_free (uid); |