diff options
author | JP Rosevear <jpr@ximian.com> | 2004-01-20 07:11:13 +0800 |
---|---|---|
committer | JP Rosevear <jpr@src.gnome.org> | 2004-01-20 07:11:13 +0800 |
commit | 6d9c4adb0da40444a409ae4da9cf6418a9e3c828 (patch) | |
tree | 873ea177984e861b62c1b3cdca2e6724d57188e0 /calendar/gui | |
parent | b2027c1a129cd5a8ea29f15596fafe9bdf8e8d94 (diff) | |
download | gsoc2013-evolution-6d9c4adb0da40444a409ae4da9cf6418a9e3c828.tar.gz gsoc2013-evolution-6d9c4adb0da40444a409ae4da9cf6418a9e3c828.tar.zst gsoc2013-evolution-6d9c4adb0da40444a409ae4da9cf6418a9e3c828.zip |
correct property name c/p error
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
svn path=/trunk/; revision=24317
Diffstat (limited to 'calendar/gui')
-rw-r--r-- | calendar/gui/e-cal-model-tasks.c | 2 |
1 files changed, 1 insertions, 1 deletions
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); } |