diff --git a/legacy/elementary/src/bin/test_genlist.c b/legacy/elementary/src/bin/test_genlist.c index 305db35dbc..5d518a6b95 100644 --- a/legacy/elementary/src/bin/test_genlist.c +++ b/legacy/elementary/src/bin/test_genlist.c @@ -1440,16 +1440,12 @@ static void _bt_show_cb(void *data, Evas_Object *obj __UNUSED__, void *event_info __UNUSED__) { elm_genlist_item_show(data, ELM_GENLIST_ITEM_SCROLLTO_TOP); - //elm_genlist_item_show(data); - //elm_genlist_item_middle_show(data); } static void _bt_bring_cb(void *data, Evas_Object *obj __UNUSED__, void *event_info __UNUSED__) { elm_genlist_item_bring_in(data, ELM_GENLIST_ITEM_SCROLLTO_TOP); - //elm_genlist_item_bring_in(data); - //elm_genlist_item_middle_bring_in(data); } void diff --git a/legacy/elementary/src/lib/elm_genlist.c b/legacy/elementary/src/lib/elm_genlist.c index 53c5619917..bf49686bda 100644 --- a/legacy/elementary/src/lib/elm_genlist.c +++ b/legacy/elementary/src/lib/elm_genlist.c @@ -4941,30 +4941,6 @@ elm_genlist_item_bring_in(Elm_Object_Item *it, Elm_Genlist_Item_Scrollto_Type ty elm_smart_scroller_region_bring_in(_it->wd->scr,x, y, w, h); } -EINA_DEPRECATED EAPI void -elm_genlist_item_top_show(Elm_Object_Item *it) -{ - elm_genlist_item_show(it, ELM_GENLIST_ITEM_SCROLLTO_TOP); -} - -EINA_DEPRECATED EAPI void -elm_genlist_item_top_bring_in(Elm_Object_Item *it) -{ - elm_genlist_item_bring_in(it, ELM_GENLIST_ITEM_SCROLLTO_TOP); -} - -EINA_DEPRECATED EAPI void -elm_genlist_item_middle_show(Elm_Object_Item *it) -{ - elm_genlist_item_show(it, ELM_GENLIST_ITEM_SCROLLTO_MIDDLE); -} - -EINA_DEPRECATED EAPI void -elm_genlist_item_middle_bring_in(Elm_Object_Item *it) -{ - elm_genlist_item_bring_in(it, ELM_GENLIST_ITEM_SCROLLTO_MIDDLE); -} - EINA_DEPRECATED EAPI void elm_genlist_item_contents_orphan(Elm_Object_Item *it) {