diff options
author | Rodrigo Moya <rodrigo@ximian.com> | 2004-03-04 19:38:58 +0800 |
---|---|---|
committer | Rodrigo Moya <rodrigo@src.gnome.org> | 2004-03-04 19:38:58 +0800 |
commit | 7716402b907cf728dd11876cba4a4119bc4cb441 (patch) | |
tree | 2de85b9783a66ba0fdfcf11804c3fbc32f669799 | |
parent | 8e8fcea05d20217a19285cb7599d1d0b96de4b3b (diff) | |
download | gsoc2013-evolution-7716402b907cf728dd11876cba4a4119bc4cb441.tar gsoc2013-evolution-7716402b907cf728dd11876cba4a4119bc4cb441.tar.gz gsoc2013-evolution-7716402b907cf728dd11876cba4a4119bc4cb441.tar.bz2 gsoc2013-evolution-7716402b907cf728dd11876cba4a4119bc4cb441.tar.lz gsoc2013-evolution-7716402b907cf728dd11876cba4a4119bc4cb441.tar.xz gsoc2013-evolution-7716402b907cf728dd11876cba4a4119bc4cb441.tar.zst gsoc2013-evolution-7716402b907cf728dd11876cba4a4119bc4cb441.zip |
Fixes #54028
2004-03-04 Rodrigo Moya <rodrigo@ximian.com>
Fixes #54028
* gui/alarm-notify/alarm-queue.c (query_objects_changed_cb): fixed the
time range for the alarm query, to include the end of today.
svn path=/trunk/; revision=24961
-rw-r--r-- | calendar/ChangeLog | 7 | ||||
-rw-r--r-- | calendar/gui/alarm-notify/alarm-queue.c | 2 |
2 files changed, 8 insertions, 1 deletions
diff --git a/calendar/ChangeLog b/calendar/ChangeLog index 294bb2bfd8..28dbfd03a3 100644 --- a/calendar/ChangeLog +++ b/calendar/ChangeLog @@ -1,5 +1,12 @@ 2004-03-04 Rodrigo Moya <rodrigo@ximian.com> + Fixes #54028 + + * gui/alarm-notify/alarm-queue.c (query_objects_changed_cb): fixed the + time range for the alarm query, to include the end of today. + +2004-03-04 Rodrigo Moya <rodrigo@ximian.com> + Fixes #53137 * gui/dialogs/comp-editor-page.[ch]: made fill_widgets virtual diff --git a/calendar/gui/alarm-notify/alarm-queue.c b/calendar/gui/alarm-notify/alarm-queue.c index 1cd96af787..0ad2f4c1fe 100644 --- a/calendar/gui/alarm-notify/alarm-queue.c +++ b/calendar/gui/alarm-notify/alarm-queue.c @@ -528,7 +528,7 @@ query_objects_changed_cb (ECal *client, GList *objects, gpointer data) zone = config_data_get_timezone (); - day_end = time_day_end_with_zone (from, zone); + day_end = time_day_end_with_zone (time (NULL), zone); for (l = objects; l != NULL; l = l->next) { const char *uid; |