diff options
author | Chenthill Palanisamy <pchenthill@novell.com> | 2005-07-25 19:50:55 +0800 |
---|---|---|
committer | Chenthill Palanisamy <pchen@src.gnome.org> | 2005-07-25 19:50:55 +0800 |
commit | 21929593dd1f815bb81b09413fbf9f44fbc146e5 (patch) | |
tree | 797a8e90c65dee217ad1daa74b5793e6cab631e5 | |
parent | c89aef269f18f8160771d535c703f6b69856e4a6 (diff) | |
download | gsoc2013-evolution-21929593dd1f815bb81b09413fbf9f44fbc146e5.tar.gz gsoc2013-evolution-21929593dd1f815bb81b09413fbf9f44fbc146e5.tar.zst gsoc2013-evolution-21929593dd1f815bb81b09413fbf9f44fbc146e5.zip |
send the comp_data->client to itip_get_comp_attendee.
2005-07-25 Chenthill Palanisamy <pchenthill@novell.com>
* gui/e-cal-popup.c:
(e_cal_popup_target_new_select): send the comp_data->client
to itip_get_comp_attendee.
svn path=/trunk/; revision=29886
-rw-r--r-- | calendar/ChangeLog | 6 | ||||
-rw-r--r-- | calendar/gui/e-cal-popup.c | 2 |
2 files changed, 7 insertions, 1 deletions
diff --git a/calendar/ChangeLog b/calendar/ChangeLog index 5807065a25..4cc269ed7f 100644 --- a/calendar/ChangeLog +++ b/calendar/ChangeLog @@ -1,3 +1,9 @@ +2005-07-25 Chenthill Palanisamy <pchenthill@novell.com> + + * gui/e-cal-popup.c: + (e_cal_popup_target_new_select): send the comp_data->client + to itip_get_comp_attendee. + 2005-07-25 Viren.l <lviren@novel.com> Fixes:248126 diff --git a/calendar/gui/e-cal-popup.c b/calendar/gui/e-cal-popup.c index 02390d44b9..909b668f6e 100644 --- a/calendar/gui/e-cal-popup.c +++ b/calendar/gui/e-cal-popup.c @@ -220,7 +220,7 @@ e_cal_popup_target_new_select(ECalPopup *eabp, struct _ECalModel *model, GPtrArr comp = e_cal_component_new (); e_cal_component_set_icalcomponent (comp, icalcomponent_new_clone (comp_data->icalcomp)); - user_email = itip_get_comp_attendee (comp, client); + user_email = itip_get_comp_attendee (comp, comp_data->client); mask &= ~E_CAL_POPUP_SELECT_ANY; if (t->events->len == 1) |