remove deprecated code related with
authorjypark <jypark@7cbeb6ba-43b4-40fd-8cce-4c39aea84d33>
Tue, 13 Mar 2012 05:46:23 +0000 (05:46 +0000)
committerjypark <jypark@7cbeb6ba-43b4-40fd-8cce-4c39aea84d33>
Tue, 13 Mar 2012 05:46:23 +0000 (05:46 +0000)
elm_genlist_item_top_bring_in
elm_genlist_item_middle_bring_in
elm_genlist_item_middle_show
elm_genlist_item_top_show
function.

git-svn-id: svn+ssh://svn.enlightenment.org/var/svn/e/trunk/elementary@69282 7cbeb6ba-43b4-40fd-8cce-4c39aea84d33

src/bin/test_genlist.c
src/lib/elm_genlist.c

index 305db35..5d518a6 100644 (file)
@@ -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
index 53c5619..bf49686 100644 (file)
@@ -4942,30 +4942,6 @@ elm_genlist_item_bring_in(Elm_Object_Item *it, Elm_Genlist_Item_Scrollto_Type ty
 }
 
 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)
 {
    elm_genlist_item_all_contents_unset(it, NULL);