diff options
Diffstat (limited to 'calendar/gui/ea-week-view.c')
-rw-r--r-- | calendar/gui/ea-week-view.c | 7 |
1 files changed, 5 insertions, 2 deletions
diff --git a/calendar/gui/ea-week-view.c b/calendar/gui/ea-week-view.c index 15fe1cb09f..679f201d95 100644 --- a/calendar/gui/ea-week-view.c +++ b/calendar/gui/ea-week-view.c @@ -319,13 +319,16 @@ ea_week_view_ref_child (AtkObject *accessible, /* Not use atk_gobject_accessible_for_object for event * text_item we need to do special thing here */ - atk_object = ea_calendar_helpers_get_accessible_for (span->text_item); + atk_object = + ea_calendar_helpers_get_accessible_for ( + span->text_item); } else { gint index; index = (current_day != -1) ? current_day : 0; - atk_object = ea_calendar_helpers_get_accessible_for ( + atk_object = + ea_calendar_helpers_get_accessible_for ( week_view->jump_buttons[index]); } g_object_ref (atk_object); |