From be569b6675e0b237beec88b2d2510c6bf68f0e16 Mon Sep 17 00:00:00 2001 From: Chenthill Palanisamy Date: Mon, 25 Jul 2005 04:55:59 +0000 Subject: Added a mask to check if the meeting needs to be accepted. Increased the 2005-07-23 Chenthill Palanisamy * gui/e-cal-popup.[ch]: (needs_to_accept), (e_cal_popup_target_new_select): Added a mask to check if the meeting needs to be accepted. * gui/e-calendar-view.c: Increased the index of the labels. * gui/e-day-view.c: (set_text_as_bold): * gui/e-week-view.c: (set_text_as_bold): Show as bold even if the attendee property is not found, since it might be a mailing list. The attendee will be added once he accepts meeting. svn path=/trunk/; revision=29869 --- calendar/gui/e-week-view.c | 5 +++-- 1 file changed, 3 insertions(+), 2 deletions(-) (limited to 'calendar/gui/e-week-view.c') diff --git a/calendar/gui/e-week-view.c b/calendar/gui/e-week-view.c index 68997cc5c1..6c3157da5e 100644 --- a/calendar/gui/e-week-view.c +++ b/calendar/gui/e-week-view.c @@ -1828,8 +1828,9 @@ set_text_as_bold (EWeekViewEvent *event, EWeekViewEventSpan *span) } } - /* The attendee has not yet accepted the meeting, display the summary as bolded */ - if (at && (at->status == ICAL_PARTSTAT_NEEDSACTION)) { + /* The attendee has not yet accepted the meeting, display the summary as bolded. + If the attendee is not present, it might have come through a mailing list*/ + if (!at || (at->status == ICAL_PARTSTAT_NEEDSACTION)) { gnome_canvas_item_set (span->text_item, "bold", TRUE, NULL); } -- cgit v1.2.3