diff options
author | Federico Mena Quintero <federico@helixcode.com> | 2000-12-12 10:17:32 +0800 |
---|---|---|
committer | Federico Mena Quintero <federico@src.gnome.org> | 2000-12-12 10:17:32 +0800 |
commit | 1de2b20cd497dbf35c96b162dace5a211f2bc679 (patch) | |
tree | 22d38893fef73b960854cde9f2536e13a83ca8a2 /calendar/gui/calendar-model.c | |
parent | cb96794cec2852c404677d969543c01bff8a3635 (diff) | |
download | gsoc2013-evolution-1de2b20cd497dbf35c96b162dace5a211f2bc679.tar.gz gsoc2013-evolution-1de2b20cd497dbf35c96b162dace5a211f2bc679.tar.zst gsoc2013-evolution-1de2b20cd497dbf35c96b162dace5a211f2bc679.zip |
This is to make things work with libical 0.21helix1 and later. Warnings
2000-12-11 Federico Mena Quintero <federico@helixcode.com>
This is to make things work with libical 0.21helix1 and later.
Warnings remain because at last libical was constified; will take
care of those tomorrow.
* cal-util/timeutil.h: #include <ical.h> instead of <icaltypes.h>
* gui/e-itip-control.c: Likewise.
* gui/e-meeting-edit.c: Likewise.
* gui/itip-utils.h: Likewise.
* cal-util/cal-component.c (alarm_uid_from_prop): constify.
(cal_component_get_status): Updated for new libical API.
(cal_component_set_status): Likewise.
* gui/calendar-model.c (ensure_task_complete): Removed unused
status code.
(ensure_task_not_complete): Update for new status API.
* gui/dialogs/task-editor.c (status_string_to_value): Removed
function.
(status_value_to_string): Removed function.
(status_string_map): Removed variable.
(fill_widgets): Update for new status API.
(dialog_to_comp_object): Likewise.
svn path=/trunk/; revision=6932
Diffstat (limited to 'calendar/gui/calendar-model.c')
-rw-r--r-- | calendar/gui/calendar-model.c | 10 |
1 files changed, 3 insertions, 7 deletions
diff --git a/calendar/gui/calendar-model.c b/calendar/gui/calendar-model.c index 8de4ab2e09..20c2bff234 100644 --- a/calendar/gui/calendar-model.c +++ b/calendar/gui/calendar-model.c @@ -1915,7 +1915,6 @@ ensure_task_complete (CalComponent *comp, { struct icaltimetype *old_completed = NULL; struct icaltimetype new_completed; - const char *old_status; int *old_percent, new_percent; gboolean set_completed = TRUE; @@ -1945,9 +1944,6 @@ ensure_task_complete (CalComponent *comp, } if (old_percent) cal_component_free_percent (old_percent); - - /* Status. */ - cal_component_get_status (comp, &old_status); } @@ -1958,7 +1954,7 @@ ensure_task_complete (CalComponent *comp, static void ensure_task_not_complete (CalComponent *comp) { - const char *old_status; + icalproperty_status old_status; int *old_percent; /* Date Completed. */ @@ -1973,8 +1969,8 @@ ensure_task_not_complete (CalComponent *comp) /* Status. */ cal_component_get_status (comp, &old_status); - if (old_status && !strcmp (old_status, "COMPLETED")) - cal_component_set_status (comp, "NEEDS-ACTION"); + if (old_status == ICAL_STATUS_COMPLETED) + cal_component_set_status (comp, ICAL_STATUS_NEEDSACTION); } |