CellAccessible: Fix return type of row|column_span

See:
 * c876c74eb7
 * 63e0eb5de5
This commit is contained in:
Daniel Boles
2018-12-30 18:15:11 +00:00
parent 171a710a23
commit 480a04131c

View File

@@ -368,7 +368,7 @@ atk_component_interface_init (AtkComponentIface *iface)
iface->grab_focus = gtk_cell_accessible_grab_focus;
}
static gboolean
static int
gtk_cell_accessible_get_column_span (AtkTableCell *table_cell)
{
return 1;
@@ -404,7 +404,7 @@ gtk_cell_accessible_get_position (AtkTableCell *table_cell,
return ((row && *row > 0) || (column && *column > 0));
}
static gboolean
static int
gtk_cell_accessible_get_row_span (AtkTableCell *table_cell)
{
return 1;