From 678779afb87dad7986eb6fd2130ec1a316ee4201 Mon Sep 17 00:00:00 2001 From: Bruce Tao Date: Thu, 12 Feb 2004 09:44:47 +0000 Subject: See #51567 use "gtk_dialog_add_buttons" to change the response_id of 2004-02-13 Bruce Tao See #51567 * gui/dialogs/delete-comp.c (delete_component_dialog): use "gtk_dialog_add_buttons" to change the response_id of button "YES" and "NO". svn path=/trunk/; revision=24719 --- calendar/ChangeLog | 7 +++++++ calendar/gui/dialogs/delete-comp.c | 5 +++-- 2 files changed, 10 insertions(+), 2 deletions(-) diff --git a/calendar/ChangeLog b/calendar/ChangeLog index 0989012d1b..1e82d7c2ee 100644 --- a/calendar/ChangeLog +++ b/calendar/ChangeLog @@ -1,3 +1,10 @@ +2004-02-13 Bruce Tao + + See #51567 + * gui/dialogs/delete-comp.c (delete_component_dialog): + use "gtk_dialog_add_buttons" to change the response_id of button + "YES" and "NO". + 2004-02-11 Rodrigo Moya Fixes #53886 diff --git a/calendar/gui/dialogs/delete-comp.c b/calendar/gui/dialogs/delete-comp.c index c4f9e5dc3d..843f79ad3c 100644 --- a/calendar/gui/dialogs/delete-comp.c +++ b/calendar/gui/dialogs/delete-comp.c @@ -150,9 +150,10 @@ delete_component_dialog (ECalComponent *comp, } dialog = gtk_message_dialog_new ((GtkWindow *)gtk_widget_get_toplevel (widget), - 0, GTK_MESSAGE_QUESTION, GTK_BUTTONS_YES_NO, "%s", str); + 0, GTK_MESSAGE_QUESTION, GTK_BUTTONS_NONE, "%s", str); + gtk_dialog_add_buttons ((GtkDialog *) dialog, GTK_STOCK_NO, GTK_RESPONSE_CANCEL, GTK_STOCK_YES, GTK_RESPONSE_OK, NULL); g_free (str); - ret = gtk_dialog_run ((GtkDialog *)dialog) == GTK_RESPONSE_YES; + ret = gtk_dialog_run ((GtkDialog *) dialog) == GTK_RESPONSE_OK; gtk_widget_destroy (dialog); return ret; -- cgit v1.2.3