Elementary grid: dont use evas_obj_table on wd->grd
authorbdilly <bdilly@7cbeb6ba-43b4-40fd-8cce-4c39aea84d33>
Wed, 25 May 2011 14:52:28 +0000 (14:52 +0000)
committerbdilly <bdilly@7cbeb6ba-43b4-40fd-8cce-4c39aea84d33>
Wed, 25 May 2011 14:52:28 +0000 (14:52 +0000)
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.

git-svn-id: https://svn.enlightenment.org/svn/e/trunk/elementary@59671 7cbeb6ba-43b4-40fd-8cce-4c39aea84d33

src/lib/elm_grid.c

index 5303dd8..4e0cae6 100644 (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;