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/gui | |
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/gui')
-rw-r--r-- | calendar/gui/alarm-notify/alarm-queue.c | 2 |
1 files changed, 1 insertions, 1 deletions
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 |