diff options
author | Suman Manjunath <msuman@src.gnome.org> | 2009-01-07 12:07:10 +0800 |
---|---|---|
committer | Suman Manjunath <msuman@src.gnome.org> | 2009-01-07 12:07:10 +0800 |
commit | b3c048bed92ef986192cfe60926d8110fffb1299 (patch) | |
tree | 618b8053d952776f1c2101d915f0a399ced575a8 /calendar/gui/e-meeting-store.c | |
parent | 7ee6b47dbca198102e63956e1d8f78cdd750a234 (diff) | |
download | gsoc2013-evolution-b3c048bed92ef986192cfe60926d8110fffb1299.tar gsoc2013-evolution-b3c048bed92ef986192cfe60926d8110fffb1299.tar.gz gsoc2013-evolution-b3c048bed92ef986192cfe60926d8110fffb1299.tar.bz2 gsoc2013-evolution-b3c048bed92ef986192cfe60926d8110fffb1299.tar.lz gsoc2013-evolution-b3c048bed92ef986192cfe60926d8110fffb1299.tar.xz gsoc2013-evolution-b3c048bed92ef986192cfe60926d8110fffb1299.tar.zst gsoc2013-evolution-b3c048bed92ef986192cfe60926d8110fffb1299.zip |
Part of fix for bug #443544 (bugzilla.novell.com) - Handle E_MEETING_FREE_BUSY_FREE.
svn path=/trunk/; revision=37005
Diffstat (limited to 'calendar/gui/e-meeting-store.c')
-rw-r--r-- | calendar/gui/e-meeting-store.c | 4 |
1 files changed, 4 insertions, 0 deletions
diff --git a/calendar/gui/e-meeting-store.c b/calendar/gui/e-meeting-store.c index 218dbad7e3..e8788f0454 100644 --- a/calendar/gui/e-meeting-store.c +++ b/calendar/gui/e-meeting-store.c @@ -1017,6 +1017,10 @@ process_free_busy_comp (EMeetingAttendee *attendee, busy_type = E_MEETING_FREE_BUSY_TENTATIVE; break; + case ICAL_FBTYPE_FREE: + busy_type = E_MEETING_FREE_BUSY_FREE; + break; + default: break; } |