diff options
author | Chenthill Palanisamy <pchenthill@novell.com> | 2005-04-18 22:21:33 +0800 |
---|---|---|
committer | Chenthill Palanisamy <pchen@src.gnome.org> | 2005-04-18 22:21:33 +0800 |
commit | b719bb27d83684abaaa2223a2d70c7bc7e256388 (patch) | |
tree | d32211bcffb5b9e5fd39c0eabbdf501b7b281c8a /calendar | |
parent | fcae4fef99c227ca9dff15e6e433230ba671fc96 (diff) | |
download | gsoc2013-evolution-b719bb27d83684abaaa2223a2d70c7bc7e256388.tar.gz gsoc2013-evolution-b719bb27d83684abaaa2223a2d70c7bc7e256388.tar.zst gsoc2013-evolution-b719bb27d83684abaaa2223a2d70c7bc7e256388.zip |
Fixes #274476 Send the right value boolean variable meeting to
2005-04-13 Chenthill Palanisamy <pchenthill@novell.com>
Fixes #274476
* gui/e-calendar-view.c: (e_calendar_view_open_event): Send the
right value boolean variable meeting to e_calendar_view_edit_appointment
method.
svn path=/trunk/; revision=29211
Diffstat (limited to 'calendar')
-rw-r--r-- | calendar/ChangeLog | 7 | ||||
-rw-r--r-- | calendar/gui/e-calendar-view.c | 3 |
2 files changed, 8 insertions, 2 deletions
diff --git a/calendar/ChangeLog b/calendar/ChangeLog index ead41ffeed..e0710c83c5 100644 --- a/calendar/ChangeLog +++ b/calendar/ChangeLog @@ -1,3 +1,10 @@ +2005-04-13 Chenthill Palanisamy <pchenthill@novell.com> + + Fixes #274476 + * gui/e-calendar-view.c: (e_calendar_view_open_event): Send the + right value boolean variable meeting to e_calendar_view_edit_appointment + method. + 2005-04-08 Rodrigo Moya <rodrigo@novell.com> Fixes #70035 diff --git a/calendar/gui/e-calendar-view.c b/calendar/gui/e-calendar-view.c index 3c7902e5f2..a3e5a6ce3a 100644 --- a/calendar/gui/e-calendar-view.c +++ b/calendar/gui/e-calendar-view.c @@ -1492,10 +1492,9 @@ e_calendar_view_open_event (ECalendarView *cal_view) selected = e_calendar_view_get_selected_events (cal_view); if (selected) { ECalendarViewEvent *event = (ECalendarViewEvent *) selected->data; - if (event) e_calendar_view_edit_appointment (cal_view, event->comp_data->client, - event->comp_data->icalcomp, FALSE); + event->comp_data->icalcomp, icalcomponent_get_first_property(event->comp_data->icalcomp, ICAL_ATTENDEE_PROPERTY)); g_list_free (selected); } |