diff options
author | Matthew Barnes <mbarnes@redhat.com> | 2007-11-15 06:04:21 +0800 |
---|---|---|
committer | Matthew Barnes <mbarnes@src.gnome.org> | 2007-11-15 06:04:21 +0800 |
commit | 9e4fcb29cf7f05c18f7fd34e318f9e795fa32e91 (patch) | |
tree | 2e1e96f33404781354c422a7e9beaf458ebeb655 /a11y/calendar | |
parent | 7e8f8bb9e5167b0219b48ab3e8062080d3740b0a (diff) | |
download | gsoc2013-evolution-9e4fcb29cf7f05c18f7fd34e318f9e795fa32e91.tar.gz gsoc2013-evolution-9e4fcb29cf7f05c18f7fd34e318f9e795fa32e91.tar.zst gsoc2013-evolution-9e4fcb29cf7f05c18f7fd34e318f9e795fa32e91.zip |
** Remove trailing whitespace from source code.
2007-11-14 Matthew Barnes <mbarnes@redhat.com>
** Remove trailing whitespace from source code.
svn path=/trunk/; revision=34537
Diffstat (limited to 'a11y/calendar')
-rw-r--r-- | a11y/calendar/ea-cal-view-event.c | 20 | ||||
-rw-r--r-- | a11y/calendar/ea-cal-view.c | 4 | ||||
-rw-r--r-- | a11y/calendar/ea-calendar-helpers.c | 4 | ||||
-rw-r--r-- | a11y/calendar/ea-calendar.c | 4 | ||||
-rw-r--r-- | a11y/calendar/ea-day-view-cell.c | 8 | ||||
-rw-r--r-- | a11y/calendar/ea-day-view-main-item.c | 62 | ||||
-rw-r--r-- | a11y/calendar/ea-day-view.c | 14 | ||||
-rw-r--r-- | a11y/calendar/ea-gnome-calendar.c | 2 | ||||
-rw-r--r-- | a11y/calendar/ea-jump-button.c | 6 | ||||
-rw-r--r-- | a11y/calendar/ea-week-view-cell.c | 16 | ||||
-rw-r--r-- | a11y/calendar/ea-week-view-main-item.c | 72 | ||||
-rw-r--r-- | a11y/calendar/ea-week-view.c | 4 |
12 files changed, 108 insertions, 108 deletions
diff --git a/a11y/calendar/ea-cal-view-event.c b/a11y/calendar/ea-cal-view-event.c index 9f7e694597..a85ce348c6 100644 --- a/a11y/calendar/ea-cal-view-event.c +++ b/a11y/calendar/ea-cal-view-event.c @@ -114,7 +114,7 @@ ea_cal_view_event_get_type (void) g_type_add_interface_static (type, ATK_TYPE_ACTION, &atk_action_info); - + } return type; @@ -164,7 +164,7 @@ static void ea_cal_view_finalize (GObject *object) } #endif -AtkObject* +AtkObject* ea_cal_view_event_new (GObject *obj) { AtkObject *atk_obj = NULL; @@ -262,21 +262,21 @@ ea_cal_view_event_get_name (AtkObject *accessible) alarm_string = recur_string = meeting_string = ""; if (event && event->comp_data) { - if (e_cal_util_component_has_alarms (event->comp_data->icalcomp)) + if (e_cal_util_component_has_alarms (event->comp_data->icalcomp)) alarm_string = _("It has alarms."); - if (e_cal_util_component_has_recurrences (event->comp_data->icalcomp)) + if (e_cal_util_component_has_recurrences (event->comp_data->icalcomp)) recur_string = _("It has recurrences."); - if (e_cal_util_component_has_organizer (event->comp_data->icalcomp)) + if (e_cal_util_component_has_organizer (event->comp_data->icalcomp)) meeting_string = _("It is a meeting."); - + } summary = icalcomponent_get_summary (event->comp_data->icalcomp); - if (summary) + if (summary) summary_string = g_strdup_printf (_("Calendar Event: Summary is %s."), summary); - else + else summary_string = g_strdup (_("Calendar Event: It has no summary.")); name_string = g_strdup_printf ("%s %s %s %s", summary_string, alarm_string, recur_string, meeting_string); @@ -410,7 +410,7 @@ ea_cal_view_event_ref_state_set (AtkObject *accessible) /* Atk Component Interface */ -static void +static void atk_component_interface_init (AtkComponentIface *iface) { g_return_if_fail (iface != NULL); @@ -418,7 +418,7 @@ atk_component_interface_init (AtkComponentIface *iface) iface->get_extents = ea_cal_view_get_extents; } -static void +static void ea_cal_view_get_extents (AtkComponent *component, gint *x, gint *y, diff --git a/a11y/calendar/ea-cal-view.c b/a11y/calendar/ea-cal-view.c index ad52976ca1..9ce7a11fc8 100644 --- a/a11y/calendar/ea-cal-view.c +++ b/a11y/calendar/ea-cal-view.c @@ -118,7 +118,7 @@ ea_cal_view_class_init (EaCalViewClass *klass) class->initialize = ea_cal_view_real_initialize; } -AtkObject* +AtkObject* ea_cal_view_new (GtkWidget *widget) { GObject *object; @@ -169,7 +169,7 @@ ea_cal_view_real_initialize (AtkObject *accessible, gpointer data) accessible); } -static AtkObject* +static AtkObject* ea_cal_view_get_parent (AtkObject *accessible) { ECalendarView *cal_view; diff --git a/a11y/calendar/ea-calendar-helpers.c b/a11y/calendar/ea-calendar-helpers.c index caf1913829..aff9f0c771 100644 --- a/a11y/calendar/ea-calendar-helpers.c +++ b/a11y/calendar/ea-calendar-helpers.c @@ -36,7 +36,7 @@ * ea_calendar_helpers_get_accessible_for * @canvas_item: the canvas item for a event or a jump button * @returns: the atk object for the canvas_item - * + * **/ AtkObject * ea_calendar_helpers_get_accessible_for (GnomeCanvasItem *canvas_item) @@ -71,7 +71,7 @@ ea_calendar_helpers_get_accessible_for (GnomeCanvasItem *canvas_item) * @returns: the cal view widget if exists * * Get the cal view widget contains the canvas_item. - * + * **/ ECalendarView * ea_calendar_helpers_get_cal_view_from (GnomeCanvasItem *canvas_item) diff --git a/a11y/calendar/ea-calendar.c b/a11y/calendar/ea-calendar.c index 8c2167fac5..be9c48d594 100644 --- a/a11y/calendar/ea-calendar.c +++ b/a11y/calendar/ea-calendar.c @@ -107,7 +107,7 @@ e_day_view_a11y_init (void) EA_SET_FACTORY (e_day_view_get_type(), ea_day_view); } -void +void e_day_view_main_item_a11y_init (void) { EA_SET_FACTORY (e_day_view_main_item_get_type (), ea_day_view_main_item); @@ -119,7 +119,7 @@ e_week_view_a11y_init (void) EA_SET_FACTORY (e_week_view_get_type(), ea_week_view); } -void +void e_week_view_main_item_a11y_init (void) { EA_SET_FACTORY (e_week_view_main_item_get_type (), ea_week_view_main_item); diff --git a/a11y/calendar/ea-day-view-cell.c b/a11y/calendar/ea-day-view-cell.c index b32dc4d0f0..ec1718225a 100644 --- a/a11y/calendar/ea-day-view-cell.c +++ b/a11y/calendar/ea-day-view-cell.c @@ -166,7 +166,7 @@ ea_day_view_cell_class_init (EaDayViewCellClass *klass) class->get_index_in_parent = ea_day_view_cell_get_index_in_parent; } -AtkObject* +AtkObject* ea_day_view_cell_new (GObject *obj) { gpointer object; @@ -263,7 +263,7 @@ ea_day_view_cell_ref_state_set (AtkObject *obj) if (x + width < parent_x || x > parent_x + parent_width || y + height < parent_y || y > parent_y + parent_height) - /* the cell is out of the main canvas */ + /* the cell is out of the main canvas */ ; else atk_state_set_add_state (state_set, ATK_STATE_VISIBLE); @@ -312,7 +312,7 @@ ea_day_view_cell_get_index_in_parent (AtkObject *accessible) /* Atk Component Interface */ -static void +static void atk_component_interface_init (AtkComponentIface *iface) { g_return_if_fail (iface != NULL); @@ -321,7 +321,7 @@ atk_component_interface_init (AtkComponentIface *iface) iface->grab_focus = component_interface_grab_focus; } -static void +static void component_interface_get_extents (AtkComponent *component, gint *x, gint *y, gint *width, gint *height, AtkCoordType coord_type) diff --git a/a11y/calendar/ea-day-view-main-item.c b/a11y/calendar/ea-day-view-main-item.c index 1889b9cf17..658df70cd2 100644 --- a/a11y/calendar/ea-day-view-main-item.c +++ b/a11y/calendar/ea-day-view-main-item.c @@ -63,7 +63,7 @@ static gint table_interface_get_column_at_index (AtkTable *table, static gint table_interface_get_row_at_index (AtkTable *table, gint index); static AtkObject* table_interface_ref_at (AtkTable *table, - gint row, + gint row, gint column); static gint table_interface_get_n_rows (AtkTable *table); static gint table_interface_get_n_columns (AtkTable *table); @@ -229,7 +229,7 @@ ea_day_view_main_item_class_init (EaDayViewMainItemClass *klass) class->get_index_in_parent = ea_day_view_main_item_get_index_in_parent; } -AtkObject* +AtkObject* ea_day_view_main_item_new (GObject *obj) { AtkObject *accessible; @@ -451,7 +451,7 @@ ea_day_view_main_item_time_change_cb (EDayView *day_view, gpointer data) "active-descendant-changed", item_cell); g_signal_emit_by_name (data, "selection_changed"); - + atk_focus_tracker_notify (item_cell); g_object_unref (item_cell); } @@ -618,7 +618,7 @@ ea_day_view_main_item_destory_cell_data (EaDayViewMainItem *ea_main_item) /* Atk Component Interface */ -static void +static void atk_component_interface_init (AtkComponentIface *iface) { g_return_if_fail (iface != NULL); @@ -626,7 +626,7 @@ atk_component_interface_init (AtkComponentIface *iface) iface->get_extents = component_interface_get_extents; } -static void +static void component_interface_get_extents (AtkComponent *component, gint *x, gint *y, gint *width, gint *height, AtkCoordType coord_type) @@ -654,7 +654,7 @@ component_interface_get_extents (AtkComponent *component, /* atk table interface */ -static void +static void atk_table_interface_init (AtkTableIface *iface) { g_return_if_fail (iface != NULL); @@ -687,9 +687,9 @@ atk_table_interface_init (AtkTableIface *iface) iface->get_column_description = table_interface_get_column_description; } -static AtkObject* +static AtkObject* table_interface_ref_at (AtkTable *table, - gint row, + gint row, gint column) { gint index; @@ -700,7 +700,7 @@ table_interface_ref_at (AtkTable *table, return ea_day_view_main_item_ref_child (ATK_OBJECT (ea_main_item), index); } -static gint +static gint table_interface_get_n_rows (AtkTable *table) { AtkGObjectAccessible *atk_gobj; @@ -720,7 +720,7 @@ table_interface_get_n_rows (AtkTable *table) return day_view->rows; } -static gint +static gint table_interface_get_n_columns (AtkTable *table) { AtkGObjectAccessible *atk_gobj; @@ -787,7 +787,7 @@ table_interface_get_column_extent_at (AtkTable *table, return width; } -static gint +static gint table_interface_get_row_extent_at (AtkTable *table, gint row, gint column) @@ -808,7 +808,7 @@ table_interface_get_row_extent_at (AtkTable *table, return height; } -static gboolean +static gboolean table_interface_is_row_selected (AtkTable *table, gint row) { @@ -838,16 +838,16 @@ table_interface_is_row_selected (AtkTable *table, return FALSE; } -static gboolean -table_interface_is_selected (AtkTable *table, - gint row, +static gboolean +table_interface_is_selected (AtkTable *table, + gint row, gint column) { return table_interface_is_row_selected (table, row) && table_interface_is_column_selected (table, column); } -static gboolean +static gboolean table_interface_is_column_selected (AtkTable *table, gint column) { @@ -871,7 +871,7 @@ table_interface_is_column_selected (AtkTable *table, return FALSE; } -static gint +static gint table_interface_get_selected_rows (AtkTable *table, gint **rows_selected) { @@ -912,7 +912,7 @@ table_interface_get_selected_rows (AtkTable *table, return n_rows; } -static gint +static gint table_interface_get_selected_columns (AtkTable *table, gint **columns_selected) { @@ -946,8 +946,8 @@ table_interface_get_selected_columns (AtkTable *table, return n_columns; } -static gboolean -table_interface_add_row_selection (AtkTable *table, +static gboolean +table_interface_add_row_selection (AtkTable *table, gint row) { AtkGObjectAccessible *atk_gobj; @@ -979,15 +979,15 @@ table_interface_add_row_selection (AtkTable *table, return TRUE; } -static gboolean -table_interface_remove_row_selection (AtkTable *table, +static gboolean +table_interface_remove_row_selection (AtkTable *table, gint row) { return FALSE; } -static gboolean -table_interface_add_column_selection (AtkTable *table, +static gboolean +table_interface_add_column_selection (AtkTable *table, gint column) { AtkGObjectAccessible *atk_gobj; @@ -1016,24 +1016,24 @@ table_interface_add_column_selection (AtkTable *table, return TRUE; } -static gboolean -table_interface_remove_column_selection (AtkTable *table, +static gboolean +table_interface_remove_column_selection (AtkTable *table, gint column) { /* FIXME: NOT IMPLEMENTED */ return FALSE; } -static AtkObject* -table_interface_get_row_header (AtkTable *table, +static AtkObject* +table_interface_get_row_header (AtkTable *table, gint row) { /* FIXME: NOT IMPLEMENTED */ return NULL; } -static AtkObject* -table_interface_get_column_header (AtkTable *table, +static AtkObject* +table_interface_get_column_header (AtkTable *table, gint in_col) { /* FIXME: NOT IMPLEMENTED */ @@ -1202,7 +1202,7 @@ selection_interface_clear_selection (AtkSelection *selection) return TRUE; } -static AtkObject* +static AtkObject* selection_interface_ref_selection (AtkSelection *selection, gint i) { gint count; diff --git a/a11y/calendar/ea-day-view.c b/a11y/calendar/ea-day-view.c index 8a397c8fe2..66537c0f3f 100644 --- a/a11y/calendar/ea-day-view.c +++ b/a11y/calendar/ea-day-view.c @@ -100,7 +100,7 @@ ea_day_view_class_init (EaDayViewClass *klass) class->ref_child = ea_day_view_ref_child; } -AtkObject* +AtkObject* ea_day_view_new (GtkWidget *widget) { GObject *object; @@ -146,24 +146,24 @@ ea_day_view_get_name (AtkObject *accessible) /* the child main item is always there */ --n_events; if (n_events >= 1) - /* To translators: Here, "It" is either like "Work Week View: July + /* To translators: Here, "It" is either like "Work Week View: July 10th - July 14th, 2006." or "Day View: Thursday July 13th, 2006." */ event_str = g_strdup_printf (ngettext ("It has %d event.", "It has %d events.", n_events), n_events); else - /* To translators: Here, "It" is either like "Work Week View: July + /* To translators: Here, "It" is either like "Work Week View: July 10th - July 14th, 2006." or "Day View: Thursday July 13th, 2006." */ event_str = g_strdup (_("It has no events.")); view_type = gnome_calendar_get_view (gcal); if (view_type == GNOME_CAL_WORK_WEEK_VIEW) - /* To translators: First %s is the week, for example "July 10th - - July 14th, 2006". Second %s is the number of events in this work + /* To translators: First %s is the week, for example "July 10th - + July 14th, 2006". Second %s is the number of events in this work week, for example "It has %d event/events." or "It has no events." */ name_str = g_strdup_printf (_("Work Week View: %s. %s"), label_text, event_str); else - /* To translators: First %s is the day, for example "Thursday July - 13th, 2006". Second %s is the number of events on this day, for + /* To translators: First %s is the day, for example "Thursday July + 13th, 2006". Second %s is the number of events on this day, for example "It has %d event/events." or "It has no events." */ name_str = g_strdup_printf (_("Day View: %s. %s"), label_text, event_str); diff --git a/a11y/calendar/ea-gnome-calendar.c b/a11y/calendar/ea-gnome-calendar.c index 509d515f2d..6de483f952 100644 --- a/a11y/calendar/ea-gnome-calendar.c +++ b/a11y/calendar/ea-gnome-calendar.c @@ -100,7 +100,7 @@ ea_gnome_calendar_class_init (EaGnomeCalendarClass *klass) class->ref_child = ea_gnome_calendar_ref_child; } -AtkObject* +AtkObject* ea_gnome_calendar_new (GtkWidget *widget) { GObject *object; diff --git a/a11y/calendar/ea-jump-button.c b/a11y/calendar/ea-jump-button.c index 45dcc3fe06..2d239091a9 100644 --- a/a11y/calendar/ea-jump-button.c +++ b/a11y/calendar/ea-jump-button.c @@ -110,7 +110,7 @@ ea_jump_button_class_init (EaJumpButtonClass *klass) class->get_description = ea_jump_button_get_description; } -AtkObject* +AtkObject* ea_jump_button_new (GObject *obj) { AtkObject *atk_obj = NULL; @@ -197,7 +197,7 @@ jump_button_do_action (AtkAction *action, return_value = FALSE; break; } - return return_value; + return return_value; } static gint @@ -222,5 +222,5 @@ jump_button_get_keybinding (AtkAction *action, default: break; } - return return_value; + return return_value; } diff --git a/a11y/calendar/ea-week-view-cell.c b/a11y/calendar/ea-week-view-cell.c index b557812f4b..0ee410b5f5 100644 --- a/a11y/calendar/ea-week-view-cell.c +++ b/a11y/calendar/ea-week-view-cell.c @@ -167,7 +167,7 @@ ea_week_view_cell_class_init (EaWeekViewCellClass *klass) } -AtkObject* +AtkObject* ea_week_view_cell_new (GObject *obj) { gpointer object; @@ -232,7 +232,7 @@ ea_week_view_cell_get_name (AtkObject *accessible) new_column = cell->column + start_day; new_row = cell->row; } - + column_label = atk_table_get_column_description (ATK_TABLE (ea_main_item), new_column); row_label = atk_table_get_row_description (ATK_TABLE (ea_main_item), @@ -275,7 +275,7 @@ ea_week_view_cell_ref_state_set (AtkObject *obj) if (x + width < parent_x || x > parent_x + parent_width || y + height < parent_y || y > parent_y + parent_height) - /* the cell is out of the main canvas */ + /* the cell is out of the main canvas */ ; else atk_state_set_add_state (state_set, ATK_STATE_VISIBLE); @@ -324,7 +324,7 @@ ea_week_view_cell_get_index_in_parent (AtkObject *accessible) /* Atk Component Interface */ -static void +static void atk_component_interface_init (AtkComponentIface *iface) { g_return_if_fail (iface != NULL); @@ -333,7 +333,7 @@ atk_component_interface_init (AtkComponentIface *iface) iface->grab_focus = component_interface_grab_focus; } -static void +static void component_interface_get_extents (AtkComponent *component, gint *x, gint *y, gint *width, gint *height, AtkCoordType coord_type) @@ -391,7 +391,7 @@ component_interface_get_extents (AtkComponent *component, *y += week_view->row_offsets[cell->row*2]- scroll_y; } } else { - if (start_day < 3) { + if (start_day < 3) { if (cell->column < 3) { *height = week_view->row_heights[cell->column*2]*2; *width = week_view->col_widths[0]; @@ -438,8 +438,8 @@ component_interface_get_extents (AtkComponent *component, *y += week_view->row_offsets[(cell->column - 1)*2]- scroll_y; } else { *height = week_view->row_heights[(cell->column)*2]*2; - *width = week_view->col_widths[0]; - *x += week_view->col_offsets[0] - scroll_x; + *width = week_view->col_widths[0]; + *x += week_view->col_offsets[0] - scroll_x; *y += week_view->row_offsets[cell->column*2]- scroll_y; } } else { diff --git a/a11y/calendar/ea-week-view-main-item.c b/a11y/calendar/ea-week-view-main-item.c index 17220fd185..01c6f0236e 100644 --- a/a11y/calendar/ea-week-view-main-item.c +++ b/a11y/calendar/ea-week-view-main-item.c @@ -64,7 +64,7 @@ static gint table_interface_get_column_at_index (AtkTable *table, static gint table_interface_get_row_at_index (AtkTable *table, gint index); static AtkObject* table_interface_ref_at (AtkTable *table, - gint row, + gint row, gint column); static gint table_interface_get_n_rows (AtkTable *table); static gint table_interface_get_n_columns (AtkTable *table); @@ -183,7 +183,7 @@ ea_week_view_main_item_get_type (void) (GInterfaceFinalizeFunc) NULL, NULL }; - + /* * Figure out the size of the class and instance @@ -230,7 +230,7 @@ ea_week_view_main_item_class_init (EaWeekViewMainItemClass *klass) class->get_index_in_parent = ea_week_view_main_item_get_index_in_parent; } -AtkObject* +AtkObject* ea_week_view_main_item_new (GObject *obj) { AtkObject *accessible; @@ -318,10 +318,10 @@ ea_week_view_main_item_get_n_children (AtkObject *accessible) main_item = E_WEEK_VIEW_MAIN_ITEM (g_obj); week_view = main_item->week_view; - + if (week_view->multi_week_view) return 7 * week_view->weeks_shown; - else + else return 7; } @@ -593,7 +593,7 @@ ea_week_view_main_item_destory_cell_data (EaWeekViewMainItem *ea_main_item) /* Atk Component Interface */ -static void +static void atk_component_interface_init (AtkComponentIface *iface) { g_return_if_fail (iface != NULL); @@ -601,7 +601,7 @@ atk_component_interface_init (AtkComponentIface *iface) iface->get_extents = component_interface_get_extents; } -static void +static void component_interface_get_extents (AtkComponent *component, gint *x, gint *y, gint *width, gint *height, AtkCoordType coord_type) @@ -629,7 +629,7 @@ component_interface_get_extents (AtkComponent *component, /* atk table interface */ -static void +static void atk_table_interface_init (AtkTableIface *iface) { g_return_if_fail (iface != NULL); @@ -662,9 +662,9 @@ atk_table_interface_init (AtkTableIface *iface) iface->get_column_description = table_interface_get_column_description; } -static AtkObject* +static AtkObject* table_interface_ref_at (AtkTable *table, - gint row, + gint row, gint column) { gint index; @@ -675,7 +675,7 @@ table_interface_ref_at (AtkTable *table, return ea_week_view_main_item_ref_child (ATK_OBJECT (ea_main_item), index); } -static gint +static gint table_interface_get_n_rows (AtkTable *table) { AtkGObjectAccessible *atk_gobj; @@ -695,7 +695,7 @@ table_interface_get_n_rows (AtkTable *table) return week_view->weeks_shown; } -static gint +static gint table_interface_get_n_columns (AtkTable *table) { AtkGObjectAccessible *atk_gobj; @@ -757,7 +757,7 @@ table_interface_get_column_extent_at (AtkTable *table, return width; } -static gint +static gint table_interface_get_row_extent_at (AtkTable *table, gint row, gint column) @@ -778,7 +778,7 @@ table_interface_get_row_extent_at (AtkTable *table, return height; } -static gboolean +static gboolean table_interface_is_row_selected (AtkTable *table, gint row) { @@ -808,15 +808,15 @@ table_interface_is_row_selected (AtkTable *table, return TRUE; } -static gboolean -table_interface_is_selected (AtkTable *table, - gint row, +static gboolean +table_interface_is_selected (AtkTable *table, + gint row, gint column) { return table_interface_is_row_selected (table, row) && table_interface_is_column_selected(table, column); } -static gboolean +static gboolean table_interface_is_column_selected (AtkTable *table, gint column) { @@ -846,7 +846,7 @@ table_interface_is_column_selected (AtkTable *table, } } -static gint +static gint table_interface_get_selected_rows (AtkTable *table, gint **rows_selected) { @@ -881,7 +881,7 @@ table_interface_get_selected_rows (AtkTable *table, return n_rows; } -static gint +static gint table_interface_get_selected_columns (AtkTable *table, gint **columns_selected) { @@ -911,7 +911,7 @@ table_interface_get_selected_columns (AtkTable *table, } if (n_columns > 0 && start_column != -1 && columns_selected) { gint index; - + *columns_selected = (gint *) g_malloc (n_columns * sizeof (gint)); for (index = 0; index < n_columns; ++index) (*columns_selected)[index] = start_column + index; @@ -919,8 +919,8 @@ table_interface_get_selected_columns (AtkTable *table, return n_columns; } -static gboolean -table_interface_add_row_selection (AtkTable *table, +static gboolean +table_interface_add_row_selection (AtkTable *table, gint row) { AtkGObjectAccessible *atk_gobj; @@ -946,15 +946,15 @@ table_interface_add_row_selection (AtkTable *table, return TRUE; } -static gboolean -table_interface_remove_row_selection (AtkTable *table, +static gboolean +table_interface_remove_row_selection (AtkTable *table, gint row) { return FALSE; } -static gboolean -table_interface_add_column_selection (AtkTable *table, +static gboolean +table_interface_add_column_selection (AtkTable *table, gint column) { AtkGObjectAccessible *atk_gobj; @@ -980,24 +980,24 @@ table_interface_add_column_selection (AtkTable *table, return TRUE; } -static gboolean -table_interface_remove_column_selection (AtkTable *table, +static gboolean +table_interface_remove_column_selection (AtkTable *table, gint column) { /* FIXME: NOT IMPLEMENTED */ return FALSE; } -static AtkObject* -table_interface_get_row_header (AtkTable *table, +static AtkObject* +table_interface_get_row_header (AtkTable *table, gint row) { /* FIXME: NOT IMPLEMENTED */ return NULL; } -static AtkObject* -table_interface_get_column_header (AtkTable *table, +static AtkObject* +table_interface_get_column_header (AtkTable *table, gint in_col) { /* FIXME: NOT IMPLEMENTED */ @@ -1061,7 +1061,7 @@ table_interface_get_column_description (AtkTable *table, default: break; } - + ea_cell_table_set_column_label (cell_data, in_col, buffer); description = ea_cell_table_get_column_label (cell_data, in_col); } @@ -1179,7 +1179,7 @@ selection_interface_clear_selection (AtkSelection *selection) return TRUE; } -static AtkObject* +static AtkObject* selection_interface_ref_selection (AtkSelection *selection, gint i) { gint count; @@ -1244,7 +1244,7 @@ selection_interface_is_child_selected (AtkSelection *selection, gint i) if ((week_view->selection_start_day <= i)&&(week_view->selection_end_day >= i)) return TRUE; - else + else return FALSE; } diff --git a/a11y/calendar/ea-week-view.c b/a11y/calendar/ea-week-view.c index fb2ce7bdab..c1f1debc2b 100644 --- a/a11y/calendar/ea-week-view.c +++ b/a11y/calendar/ea-week-view.c @@ -101,7 +101,7 @@ ea_week_view_class_init (EaWeekViewClass *klass) class->ref_child = ea_week_view_ref_child; } -AtkObject* +AtkObject* ea_week_view_new (GtkWidget *widget) { GObject *object; @@ -273,7 +273,7 @@ ea_week_view_ref_child (AtkObject *accessible, gint index) /* index == 0 is the main item */ atk_object = atk_gobject_accessible_for_object (G_OBJECT (week_view->main_canvas_item)); g_object_ref (atk_object); - } else + } else for (event_index = 0; event_index < max_count; ++event_index) { EWeekViewEvent *event; EWeekViewEventSpan *span; |