Elementary grid: dont use evas_obj_table on wd->grd

wd->grd is an evas_object_grid, so children should be get
with evas_object_grid_children_get

Btw, I'm not testing this function, just saw it.


SVN revision: 59671
This commit is contained in:
Bruno Dilly 2011-05-25 14:52:28 +00:00
parent 97fa1a4051
commit 775a8e32a3
1 changed files with 1 additions and 1 deletions

View File

@ -54,7 +54,7 @@ _elm_grid_focus_next_hook(const Evas_Object *obj, Elm_Focus_Direction dir, Evas_
}
else
{
items = evas_object_table_children_get(wd->grd);
items = evas_object_grid_children_get(wd->grd);
list_data_get = eina_list_data_get;
list_free = eina_list_free;