diff options
author | Federico Mena Quintero <federico@helixcode.com> | 2000-12-13 04:34:58 +0800 |
---|---|---|
committer | Federico Mena Quintero <federico@src.gnome.org> | 2000-12-13 04:34:58 +0800 |
commit | de6a038de483b86729070f81dbadaf364dcf28b9 (patch) | |
tree | 7f8b8f6a21b7510589c00fedfc903a21bc3b8c06 /calendar/gui/e-itip-control.c | |
parent | 3641d7d4bdb22b7e6a1f6d4edd84390c559222dd (diff) | |
download | gsoc2013-evolution-de6a038de483b86729070f81dbadaf364dcf28b9.tar.gz gsoc2013-evolution-de6a038de483b86729070f81dbadaf364dcf28b9.tar.zst gsoc2013-evolution-de6a038de483b86729070f81dbadaf364dcf28b9.zip |
Constify for new libical API. (set_text_list): Likewise.
2000-12-12 Federico Mena Quintero <federico@helixcode.com>
* cal-util/cal-component.c (get_text_list): Constify for new
libical API.
(set_text_list): Likewise.
* cal-util/cal-recur.c (cal_recur_get_rule_end_date): Likewise.
(cal_recur_set_rule_end_date): Likewise.
* gui/e-itip-control.c (find_attendee): Likewise.
(pstream_load): Likewise.
* gui/gnome-cal.c (released_event_object_cb): Removed unused function.
* gui/dialogs/task-editor.c (status_string_map): Removed unused
variable.
svn path=/trunk/; revision=6943
Diffstat (limited to 'calendar/gui/e-itip-control.c')
-rw-r--r-- | calendar/gui/e-itip-control.c | 7 |
1 files changed, 4 insertions, 3 deletions
diff --git a/calendar/gui/e-itip-control.c b/calendar/gui/e-itip-control.c index ced1431292..8e1ee0df22 100644 --- a/calendar/gui/e-itip-control.c +++ b/calendar/gui/e-itip-control.c @@ -63,7 +63,7 @@ static icalproperty * find_attendee (icalcomponent *comp, char *address) { icalproperty *prop; - char *attendee, *text; + const char *attendee, *text; icalvalue *value; for (prop = icalcomponent_get_first_property (comp, ICAL_ATTENDEE_PROPERTY); @@ -685,8 +685,9 @@ pstream_load (BonoboPersistStream *ps, const Bonobo_Stream stream, all the things I'll show in my control. */ { icalproperty *prop; - gchar *new_text; - gchar *organizer, *description, *summary; + const char *description, *summary; + const char *new_text; + const char *organizer; struct icaltimetype dtstart, dtend; time_t tstart, tend; |