a11y: Fix gcc warning

This commit is contained in:
Benjamin Otte 2011-11-10 16:52:44 +01:00
parent 1c96b0b838
commit 2d3c36a021

View File

@ -238,7 +238,7 @@ gtk_tree_view_accessible_initialize (AtkObject *obj,
accessible->n_children_deleted = 0;
accessible->cell_info_by_index = g_hash_table_new_full (g_int_hash,
g_int_equal, NULL, cell_info_free);
g_int_equal, NULL, (GDestroyNotify) cell_info_free);
widget = GTK_WIDGET (data);
tree_view = GTK_TREE_VIEW (widget);