I also changed all related code in trunk.
Deprecated elm_list_item_base_get(). I will remove this later.
SVN revision: 62730
*
* @ingroup List
*/
- EAPI Evas_Object *elm_list_item_base_get(const Elm_List_Item *item) EINA_ARG_NONNULL(1);
+ EAPI Evas_Object *elm_list_item_object_get(const Elm_List_Item *item) EINA_ARG_NONNULL(1);
+ EINA_DEPRECATED EAPI Evas_Object *elm_list_item_base_get(const Elm_List_Item *item) EINA_ARG_NONNULL(1);
/**
* Get the label of item.
EAPI Evas_Object *
elm_list_item_base_get(const Elm_List_Item *it)
{
+ return elm_list_item_object_get(it);
+}
+
+EAPI Evas_Object *
+elm_list_item_object_get(const Elm_List_Item *it)
+{
ELM_LIST_ITEM_CHECK_DELETED_RETURN(it, NULL);
return it->base.view;
}