remove deprecated code related with

elm_genlist_item_top_bring_in
elm_genlist_item_middle_bring_in
elm_genlist_item_middle_show
elm_genlist_item_top_show
function.


SVN revision: 69282
This commit is contained in:
Jiyoun Park 2012-03-13 05:46:23 +00:00
parent 7ef0905f31
commit cc0e8f5304
2 changed files with 0 additions and 28 deletions

View 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

View File

@ -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)
{