diff options
-rw-r--r-- | calendar/ChangeLog | 17 | ||||
-rw-r--r-- | calendar/gui/alarm-notify/alarm-queue.c | 2 |
2 files changed, 14 insertions, 5 deletions
diff --git a/calendar/ChangeLog b/calendar/ChangeLog index 62e3797264..d8f8fc8674 100644 --- a/calendar/ChangeLog +++ b/calendar/ChangeLog @@ -1,10 +1,19 @@ -2003-04-04 Ettore Perazzoli <ettore@ximian.com> +2003-04-04 JP Rosevear <jpr@ximian.com> - * gui/dialogs/alarm-options.c (alarm_to_dialog): Make the file - entry modal. [#40792] + Fixes #40790 + + * gui/alarm-notify/alarm-queue.c (procedure_notification_dialog): + return based on the response code (not old button stuff) -2003-04-04 JP Rosevear <jpr@ximian.com> +2003-04-04 Ettore Perazzoli <ettore@ximian.com> + + * gui/dialogs/alarm-options.c (alarm_to_dialog): Make the file + entry modal. [#40792] +2003-04-04 JP Rosevear <jpr@ximian.com> + + Fixes #40789 + * gui/dialogs/alarm-options.c (alarm_to_dalarm_widgets): description is a text buffer (alarm_to_malarm_widgets): ditto diff --git a/calendar/gui/alarm-notify/alarm-queue.c b/calendar/gui/alarm-notify/alarm-queue.c index fc52172851..f2bac1bc3d 100644 --- a/calendar/gui/alarm-notify/alarm-queue.c +++ b/calendar/gui/alarm-notify/alarm-queue.c @@ -897,7 +897,7 @@ procedure_notification_dialog (const char *cmd, const char *url) save_blessed_program (url); gtk_widget_destroy (dialog); - return (btn == GNOME_YES); + return (btn == GTK_RESPONSE_OK); } static void |