diff options
author | Dan Winship <danw@src.gnome.org> | 2001-10-09 21:39:57 +0800 |
---|---|---|
committer | Dan Winship <danw@src.gnome.org> | 2001-10-09 21:39:57 +0800 |
commit | a7943320c91f93c6c408916b775915446a0a6434 (patch) | |
tree | dacc74c5fc9d4391a358cfac218e0a56edd02b92 /calendar | |
parent | b0caac8fd28fac151cd45aa28e21f78d966424e5 (diff) | |
download | gsoc2013-evolution-a7943320c91f93c6c408916b775915446a0a6434.tar.gz gsoc2013-evolution-a7943320c91f93c6c408916b775915446a0a6434.tar.zst gsoc2013-evolution-a7943320c91f93c6c408916b775915446a0a6434.zip |
Fix incorrect variable name check.
* gui/e-meeting-model.c (process_free_busy_comp): Fix incorrect
variable name check.
svn path=/trunk/; revision=13512
Diffstat (limited to 'calendar')
-rw-r--r-- | calendar/ChangeLog | 5 | ||||
-rw-r--r-- | calendar/gui/e-meeting-model.c | 2 |
2 files changed, 6 insertions, 1 deletions
diff --git a/calendar/ChangeLog b/calendar/ChangeLog index f4b1ad5705..a63b399ba6 100644 --- a/calendar/ChangeLog +++ b/calendar/ChangeLog @@ -1,3 +1,8 @@ +2001-10-09 Dan Winship <danw@ximian.com> + + * gui/e-meeting-model.c (process_free_busy_comp): Fix incorrect + variable name check. + 2001-10-03 JP Rosevear <jpr@ximian.com> * gui/itip-utils.c (itip_send_comp): refactor functionality into diff --git a/calendar/gui/e-meeting-model.c b/calendar/gui/e-meeting-model.c index 712406d9e1..0cc67304ee 100644 --- a/calendar/gui/e-meeting-model.c +++ b/calendar/gui/e-meeting-model.c @@ -1015,7 +1015,7 @@ process_free_busy_comp (EMeetingAttendee *ia, icalcomponent *fb_comp, icalcompon default: } - if (fbtype != E_MEETING_FREE_BUSY_LAST) { + if (busy_type != E_MEETING_FREE_BUSY_LAST) { fb.start = convert_time (fb.start, NULL, view_zone); fb.end = convert_time (fb.end, NULL, view_zone); e_meeting_attendee_add_busy_period (ia, |