mirror of
https://gitlab.gnome.org/GNOME/gtk.git
synced 2024-11-17 06:10:15 +00:00
a11y: atk_table_get_row_at_index is deprecated
Do not use deprecated index based AtkTable functions use static helper instead. https://bugzilla.gnome.org/show_bug.cgi?id=727313
This commit is contained in:
parent
e7962f5871
commit
b29bbc6210
@ -974,7 +974,7 @@ gtk_tree_view_accessible_is_child_selected (AtkSelection *selection,
|
||||
if (widget == NULL)
|
||||
return FALSE;
|
||||
|
||||
row = atk_table_get_row_at_index (ATK_TABLE (selection), i);
|
||||
row = gtk_tree_view_accessible_get_row_at_index (ATK_TABLE (selection), i);
|
||||
|
||||
return gtk_tree_view_accessible_is_row_selected (ATK_TABLE (selection), row);
|
||||
}
|
||||
|
Loading…
Reference in New Issue
Block a user