diff options
Diffstat (limited to 'calendar')
-rw-r--r-- | calendar/ChangeLog | 7 | ||||
-rw-r--r-- | calendar/gui/e-cal-model-tasks.c | 2 |
2 files changed, 8 insertions, 1 deletions
diff --git a/calendar/ChangeLog b/calendar/ChangeLog index c853d3ca20..934992e1f0 100644 --- a/calendar/ChangeLog +++ b/calendar/ChangeLog @@ -1,5 +1,12 @@ 2004-01-19 JP Rosevear <jpr@ximian.com> + * gui/e-cal-model-tasks.c (ensure_task_not_complete): correct + property name c/p error + + Fixes # 52269 + +2004-01-19 JP Rosevear <jpr@ximian.com> + * gui/tasks-component.c (update_primary_selection): handle the case where we have a bogus uid diff --git a/calendar/gui/e-cal-model-tasks.c b/calendar/gui/e-cal-model-tasks.c index 33cb315038..edfb5d8b3d 100644 --- a/calendar/gui/e-cal-model-tasks.c +++ b/calendar/gui/e-cal-model-tasks.c @@ -195,7 +195,7 @@ ensure_task_not_complete (ECalModelComponent *comp_data) } /* Status. */ - prop = icalcomponent_get_first_property (comp_data->icalcomp, ICAL_PERCENTCOMPLETE_PROPERTY); + prop = icalcomponent_get_first_property (comp_data->icalcomp, ICAL_STATUS_PROPERTY); if (prop) icalproperty_set_status (prop, ICAL_STATUS_NEEDSACTION); } |