aboutsummaryrefslogtreecommitdiffstats
path: root/calendar/gui/dialogs/comp-editor.c
diff options
context:
space:
mode:
authorRodrigo Moya <rodrigo@ximian.com>2003-06-30 03:33:42 +0800
committerRodrigo Moya <rodrigo@src.gnome.org>2003-06-30 03:33:42 +0800
commit64ee2a607b3ad5854f9580cc793077409c7def06 (patch)
tree12f32bab460896aaa5ed094a5f50cdbe95e4739a /calendar/gui/dialogs/comp-editor.c
parentbcc06064a1543b620cb37e2c1b237cb9af999d2a (diff)
downloadgsoc2013-evolution-64ee2a607b3ad5854f9580cc793077409c7def06.tar
gsoc2013-evolution-64ee2a607b3ad5854f9580cc793077409c7def06.tar.gz
gsoc2013-evolution-64ee2a607b3ad5854f9580cc793077409c7def06.tar.bz2
gsoc2013-evolution-64ee2a607b3ad5854f9580cc793077409c7def06.tar.lz
gsoc2013-evolution-64ee2a607b3ad5854f9580cc793077409c7def06.tar.xz
gsoc2013-evolution-64ee2a607b3ad5854f9580cc793077409c7def06.tar.zst
gsoc2013-evolution-64ee2a607b3ad5854f9580cc793077409c7def06.zip
added a GtkWindow argument for callers to specify the parent window.
2003-06-27 Rodrigo Moya <rodrigo@ximian.com> * gui/dialogs/send-comp.[ch] (send_component_dialog): * gui/dialogs/cancel-comp.[ch] (cancel_component_dialog): added a GtkWindow argument for callers to specify the parent window. * gui/dialogs/changed-comp.[ch] (changed_component_dialog): added 'parent' argument and use GtkMessageDialog instead of gnome_question_dialog. * gui/e-calendar-table.c (e_calendar_table_delete_selected): * gui/e-day-view.c (e_day_view_delete_event_internal, e_day_view_on_cut, e_day_view_finish_long_event_resize, e_day_view_finish_resize, e_day_view_on_editting_stopped, e_day_view_on_top_canvas_drag_data_received, selection_received): * gui/e-week-view.c (e_week_view_delete_event_internal, e_week_view_on_cut, e_week_view_on_editing_stopped, selection_received): * gui/dialogs/event-editor.c (cancel_meeting_cmd): * gui/dialogs/task-editor.c (cancel_task_cmd): * gui/dialogs/comp-editor.c (delete_cmd, obj_removed_cb): pass the parent window to the *_component_dialog() functions. * gui/dialogs/delete-comp.c (delete_component_dialog): use the 'widget' argument to get the parent window for the dialog. svn path=/trunk/; revision=21684
Diffstat (limited to 'calendar/gui/dialogs/comp-editor.c')
-rw-r--r--calendar/gui/dialogs/comp-editor.c9
1 files changed, 5 insertions, 4 deletions
diff --git a/calendar/gui/dialogs/comp-editor.c b/calendar/gui/dialogs/comp-editor.c
index d1712eca03..62612975d2 100644
--- a/calendar/gui/dialogs/comp-editor.c
+++ b/calendar/gui/dialogs/comp-editor.c
@@ -371,7 +371,7 @@ save_comp_with_send (CompEditor *editor)
if (!save_comp (editor))
return FALSE;
- if (send && send_component_dialog (priv->client, priv->comp, !priv->existing_org)) {
+ if (send && send_component_dialog ((GtkWindow *) editor, priv->client, priv->comp, !priv->existing_org)) {
if (itip_organizer_is_user (priv->comp, priv->client))
return comp_editor_send_comp (editor, CAL_COMPONENT_METHOD_REQUEST);
else
@@ -1312,7 +1312,8 @@ delete_cmd (GtkWidget *widget, gpointer data)
if (delete_component_dialog (priv->comp, FALSE, 1, vtype, GTK_WIDGET (editor))) {
if (itip_organizer_is_user (priv->comp, priv->client)
- && cancel_component_dialog (priv->client, priv->comp, TRUE))
+ && cancel_component_dialog ((GtkWindow *) editor,
+ priv->client, priv->comp, TRUE))
itip_send_comp (CAL_COMPONENT_METHOD_CANCEL, priv->comp, priv->client, NULL);
delete_comp (editor);
@@ -1448,7 +1449,7 @@ obj_updated_cb (CalClient *client, const char *uid, gpointer data)
cal_component_get_uid (priv->comp, &edit_uid);
if (!strcmp (uid, edit_uid) && !priv->updating) {
- if (changed_component_dialog (priv->comp, FALSE, priv->changed)) {
+ if (changed_component_dialog ((GtkWindow *) editor, priv->comp, FALSE, priv->changed)) {
status = cal_client_get_object (priv->client, uid, &comp);
if (status == CAL_CLIENT_GET_SUCCESS) {
comp_editor_edit_comp (editor, comp);
@@ -1475,7 +1476,7 @@ obj_removed_cb (CalClient *client, const char *uid, gpointer data)
cal_component_get_uid (priv->comp, &edit_uid);
if (!strcmp (uid, edit_uid) && !priv->updating) {
- if (changed_component_dialog (priv->comp, TRUE, priv->changed))
+ if (changed_component_dialog ((GtkWindow *) editor, priv->comp, TRUE, priv->changed))
close_dialog (editor);
}
}