diff options
author | JP Rosevear <jpr@ximian.com> | 2003-04-05 06:33:05 +0800 |
---|---|---|
committer | JP Rosevear <jpr@src.gnome.org> | 2003-04-05 06:33:05 +0800 |
commit | 48ec4a48f0414a14272a212dd54ff4fab67e9125 (patch) | |
tree | 467dac17de0b85f4048e40f28fb9e619f674bcda /calendar | |
parent | 26838c440e0b5c10bb4788e66ed63eb1e725f3a2 (diff) | |
download | gsoc2013-evolution-48ec4a48f0414a14272a212dd54ff4fab67e9125.tar.gz gsoc2013-evolution-48ec4a48f0414a14272a212dd54ff4fab67e9125.tar.zst gsoc2013-evolution-48ec4a48f0414a14272a212dd54ff4fab67e9125.zip |
Fixes #40790
2003-04-04 JP Rosevear <jpr@ximian.com>
Fixes #40790
* gui/alarm-notify/alarm-queue.c (procedure_notification_dialog):
return based on the response code (not old button stuff)
svn path=/trunk/; revision=20679
Diffstat (limited to 'calendar')
-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 |