View | Details | Raw Unified | Return to bug 120071
Collapse All | Expand All

(-)ChangeLog (+7 lines)
Lines 1-3 Link Here
1
2005-10-04  Dinesh Layek  <ldinesh@novell.com>
2
3
	Fixes #120071 
4
	* backends/groupwise/e-cal-backend-groupwise-utils.c:
5
	(e_gw_item_to_cal_component): Added a null check for
6
	the acceptlevel.
7
1
2005-10-01  Chenthill Palanisamy  <pchenthill@novell.com>
8
2005-10-01  Chenthill Palanisamy  <pchenthill@novell.com>
2
9
3
	Fixes #314925
10
	Fixes #314925
(-)backends/groupwise/e-cal-backend-groupwise-utils.c (-1 / +3 lines)
Lines 1041-1047 e_gw_item_to_cal_component (EGwItem *ite Link Here
1041
			attendee->cutype = ICAL_CUTYPE_INDIVIDUAL;
1041
			attendee->cutype = ICAL_CUTYPE_INDIVIDUAL;
1042
			 
1042
			 
1043
			if (recipient->status == E_GW_ITEM_STAT_ACCEPTED) {
1043
			if (recipient->status == E_GW_ITEM_STAT_ACCEPTED) {
1044
				if(!strcmp(e_gw_item_get_accept_level(item),"Tentative"))
1044
				const char *accept_level = e_gw_item_get_accept_level (item);
1045
1046
				if(accept_level && !strcmp (e_gw_item_get_accept_level (item),"Tentative"))
1045
					attendee->status = ICAL_PARTSTAT_TENTATIVE;
1047
					attendee->status = ICAL_PARTSTAT_TENTATIVE;
1046
				else
1048
				else
1047
					attendee->status = ICAL_PARTSTAT_ACCEPTED;
1049
					attendee->status = ICAL_PARTSTAT_ACCEPTED;

Return to bug 120071