hermet pushed a commit to branch master.

http://git.enlightenment.org/core/efl.git/commit/?id=d9225877641b8e25a1e21920c9c2b39a72db9c79

commit d9225877641b8e25a1e21920c9c2b39a72db9c79
Author: Marcel Hollerbach <[email protected]>
Date:   Mon Aug 6 16:38:58 2018 +0900

    elm_genlist: remove unused function
    
    Summary:
    this got replaced by the none composition implementation and is not
    required anymore.
    
    Depends on D6737
    
    Reviewers: Hermet
    
    Reviewed By: Hermet
    
    Subscribers: cedric, #committers, zmike
    
    Tags: #efl
    
    Differential Revision: https://phab.enlightenment.org/D6752
---
 src/lib/elementary/elm_genlist.c | 27 ---------------------------
 1 file changed, 27 deletions(-)

diff --git a/src/lib/elementary/elm_genlist.c b/src/lib/elementary/elm_genlist.c
index fe1ba66d51..d5d2eec871 100644
--- a/src/lib/elementary/elm_genlist.c
+++ b/src/lib/elementary/elm_genlist.c
@@ -8792,33 +8792,6 @@ _elm_genlist_efl_object_provider_find(const Eo *obj, 
Elm_Genlist_Data *pd, const
    return efl_provider_find(efl_super(obj, ELM_GENLIST_CLASS), klass);
 }
 
-EOLIAN static void
-_elm_genlist_efl_ui_focus_composition_prepare(Eo *obj, Elm_Genlist_Data *pd)
-{
-   Elm_Gen_Item *item;
-   Eina_List *order = NULL;
-
-   EINA_INLIST_FOREACH(pd->items, item)
-     {
-        if (item->base->disabled)
-          continue;
-        if (item->item->type == ELM_GENLIST_ITEM_GROUP)
-          continue;
-
-        order = eina_list_append(order, item->base->eo_obj);
-     }
-
-   efl_ui_focus_composition_elements_set(obj, order);
-
-   EINA_INLIST_FOREACH(pd->items, item)
-     {
-        if (item->base->disabled)
-          continue;
-
-        efl_ui_focus_object_prepare_logical(item->base->eo_obj);
-     }
-}
-
 EOLIAN static void
 _elm_genlist_item_efl_ui_focus_object_prepare_logical_none_recursive(Eo *obj, 
Elm_Gen_Item *pd)
 {

-- 


Reply via email to