diff options
author | Milan Crha <mcrha@redhat.com> | 2011-06-06 21:54:19 +0800 |
---|---|---|
committer | Milan Crha <mcrha@redhat.com> | 2011-06-06 21:54:19 +0800 |
commit | 8f01d97298b6f7d226fc5df4a0d8afe8f78c55c1 (patch) | |
tree | 221c20725189fb0b9bca213470967c9ee744fc2c /widgets/table/gal-a11y-e-tree.c | |
parent | 76a81251dd3f7603fbc7c667a00606bf4be1428a (diff) | |
download | gsoc2013-evolution-8f01d97298b6f7d226fc5df4a0d8afe8f78c55c1.tar.gz gsoc2013-evolution-8f01d97298b6f7d226fc5df4a0d8afe8f78c55c1.tar.zst gsoc2013-evolution-8f01d97298b6f7d226fc5df4a0d8afe8f78c55c1.zip |
Bug #643526 - Crash in et_get_n_children
Diffstat (limited to 'widgets/table/gal-a11y-e-tree.c')
-rw-r--r-- | widgets/table/gal-a11y-e-tree.c | 3 |
1 files changed, 1 insertions, 2 deletions
diff --git a/widgets/table/gal-a11y-e-tree.c b/widgets/table/gal-a11y-e-tree.c index 4507e21363..f26c525550 100644 --- a/widgets/table/gal-a11y-e-tree.c +++ b/widgets/table/gal-a11y-e-tree.c @@ -178,8 +178,7 @@ gal_a11y_e_tree_new (GObject *widget) a11y = g_object_new (gal_a11y_e_tree_get_type (), NULL); - /* FIXME No way to do this in GTK 3. */ - /*GTK_ACCESSIBLE (a11y)->widget = GTK_WIDGET (widget);*/ + gtk_accessible_set_widget (GTK_ACCESSIBLE (a11y), GTK_WIDGET (widget)); return ATK_OBJECT (a11y); } |