[gtk/gtk-3-24] Fix 'Fix "A11y: Add support for AtkTableCell"'...



commit 63e0eb5de5d5a14afadebab31fe679beb6706cb2
Author: Daniel Boles <dboles src gmail com>
Date:   Sun Dec 30 18:11:50 2018 +0000

    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.

 gtk/a11y/gtkcellaccessible.c | 2 +-
 1 file changed, 1 insertion(+), 1 deletion(-)
---
diff --git a/gtk/a11y/gtkcellaccessible.c b/gtk/a11y/gtkcellaccessible.c
index 7586091853..239032331e 100644
--- a/gtk/a11y/gtkcellaccessible.c
+++ b/gtk/a11y/gtkcellaccessible.c
@@ -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)


[Date Prev][Date Next]   [Thread Prev][Thread Next]   [Thread Index] [Date Index] [Author Index]