From 7716402b907cf728dd11876cba4a4119bc4cb441 Mon Sep 17 00:00:00 2001 From: Rodrigo Moya Date: Thu, 4 Mar 2004 11:38:58 +0000 Subject: Fixes #54028 2004-03-04 Rodrigo Moya 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 --- calendar/ChangeLog | 7 +++++++ calendar/gui/alarm-notify/alarm-queue.c | 2 +- 2 files changed, 8 insertions(+), 1 deletion(-) (limited to 'calendar') diff --git a/calendar/ChangeLog b/calendar/ChangeLog index 294bb2bfd8..28dbfd03a3 100644 --- a/calendar/ChangeLog +++ b/calendar/ChangeLog @@ -1,3 +1,10 @@ +2004-03-04 Rodrigo Moya + + 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 Fixes #53137 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; -- cgit