Fix 'Fix "A11y: Add support for AtkTableCell"'...

...since one of the "fixes" there was wrong, at least cosmetically:
.get_position() is declared as returning a gboolean, which is in fact an
int in practice, but we should say what we mean, like we already did.
This commit is contained in:
Daniel Boles 2018-12-30 18:11:50 +00:00
parent c876c74eb7
commit 63e0eb5de5

View File

@ -387,7 +387,7 @@ gtk_cell_accessible_get_column_header_cells (AtkTableCell *table_cell)
cell);
}
static int
static gboolean
gtk_cell_accessible_get_position (AtkTableCell *table_cell,
gint *row,
gint *column)