seoz pushed a commit to branch master. http://git.enlightenment.org/core/elementary.git/commit/?id=dfc58f26dcdfd860cba850d211386a178bf55f6b
commit dfc58f26dcdfd860cba850d211386a178bf55f6b Author: Daniel Juyung Seo <seojuyu...@gmail.com> Date: Sun Mar 2 01:24:23 2014 +0900 widget: removed unused widget item member 'focused'. --- src/lib/elm_list.c | 1 - src/lib/elm_widget.h | 1 - 2 files changed, 2 deletions(-) diff --git a/src/lib/elm_list.c b/src/lib/elm_list.c index 54e9322..59314c4 100644 --- a/src/lib/elm_list.c +++ b/src/lib/elm_list.c @@ -1005,7 +1005,6 @@ _elm_list_item_focused(Elm_List_Item *it) if ((x < sx) || (y < sy)|| ((x + w) > (sx + sw)) || ((y + h) > (sy + sh))) elm_list_item_bring_in((Elm_Object_Item *)it); sd->focused_item = (Elm_Object_Item *)it; - ((Elm_Widget_Item *)it)->focused = EINA_TRUE; if (elm_widget_focus_highlight_enabled_get(WIDGET(it))) { edje_object_signal_emit diff --git a/src/lib/elm_widget.h b/src/lib/elm_widget.h index 52ccc10..f95f514 100644 --- a/src/lib/elm_widget.h +++ b/src/lib/elm_widget.h @@ -603,7 +603,6 @@ struct _Elm_Widget_Item Eina_Bool disabled : 1; Eina_Bool on_deletion : 1; Eina_Bool on_translate : 1; - Eina_Bool focused : 1; }; struct _Elm_Object_Item --