CellAccessible: Fix return type of row|column_span
See: *c876c74eb7*63e0eb5de5
This commit is contained in:
@@ -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;
|
||||
|
||||
Reference in New Issue
Block a user