From e9ae74c02a6c6500a5e2542cd37a931062fe8692 Mon Sep 17 00:00:00 2001 From: JP Rosevear Date: Wed, 9 Apr 2003 14:39:37 +0000 Subject: Fixes #40915 2003-04-09 JP Rosevear Fixes #40915 * gui/calendar-model.c (get_due_status): when getting the current time for date values, use a timezone aware function svn path=/trunk/; revision=20785 --- calendar/ChangeLog | 7 +++++++ calendar/gui/calendar-model.c | 5 ++++- 2 files changed, 11 insertions(+), 1 deletion(-) diff --git a/calendar/ChangeLog b/calendar/ChangeLog index 60cd4823a6..fa7ae5df06 100644 --- a/calendar/ChangeLog +++ b/calendar/ChangeLog @@ -1,5 +1,12 @@ 2003-04-09 JP Rosevear + Fixes #40915 + + * gui/calendar-model.c (get_due_status): when getting the current + time for date values, use a timezone aware function + +2003-04-09 JP Rosevear + Fixes #40952 * pcs/cal-backend-file.c (cal_backend_file_open): check for file diff --git a/calendar/gui/calendar-model.c b/calendar/gui/calendar-model.c index d4b5185351..ebe38ab6a3 100644 --- a/calendar/gui/calendar-model.c +++ b/calendar/gui/calendar-model.c @@ -633,9 +633,12 @@ typedef enum { static CalendarModelDueStatus get_due_status (CalendarModel *model, CalComponent *comp) { + CalendarModelPrivate *priv; CalComponentDateTime dt; CalendarModelDueStatus retval; + priv = model->priv; + cal_component_get_due (comp, &dt); /* First, do we have a due date? */ @@ -659,7 +662,7 @@ get_due_status (CalendarModel *model, CalComponent *comp) if (dt.value->is_date) { int cmp; - now_tt = icaltime_today (); + now_tt = icaltime_current_time_with_zone (priv->zone); cmp = icaltime_compare_date_only (*dt.value, now_tt); if (cmp < 0) -- cgit v1.2.3