aboutsummaryrefslogtreecommitdiffstats
diff options
context:
space:
mode:
-rw-r--r--calendar/ChangeLog7
-rw-r--r--calendar/gui/alarm-notify/alarm-queue.c2
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;