remove code related with elm_slideshow_item

which was deprecated


SVN revision: 69102
This commit is contained in:
Jiyoun Park 2012-03-09 13:12:47 +00:00
parent 0faa410d24
commit ab704519cf
2 changed files with 2 additions and 20 deletions

View File

@ -504,12 +504,6 @@ elm_slideshow_item_show(Elm_Object_Item *it)
evas_object_smart_callback_call(WIDGET(item), SIG_CHANGED, wd->current);
}
EINA_DEPRECATED EAPI void
elm_slideshow_show(Elm_Object_Item *it)
{
elm_slideshow_item_show(it);
}
EAPI void
elm_slideshow_next(Evas_Object *obj)
{
@ -693,12 +687,6 @@ elm_slideshow_clear(Evas_Object *obj)
elm_widget_item_free(item);
}
EAPI void
elm_slideshow_item_del(Elm_Object_Item *it)
{
elm_object_item_del(it);
}
EAPI const Eina_List *
elm_slideshow_items_get(const Evas_Object *obj)
{
@ -724,12 +712,6 @@ elm_slideshow_item_object_get(const Elm_Object_Item * it)
return VIEW(it);
}
EAPI void *
elm_slideshow_item_data_get(const Elm_Object_Item * it)
{
return elm_object_item_data_get(it);
}
EAPI int
elm_slideshow_cache_before_get(const Evas_Object *obj)
{

View File

@ -351,7 +351,7 @@ EAPI void elm_slideshow_clear(Evas_Object *obj);
*
* This list is @b not to be modified in any way and must not be
* freed. Use the list members with functions like
* elm_object_item_del(), elm_slideshow_item_data_get().
* elm_object_item_del(), elm_object_item_data_get().
*
* @warning This list is only valid until @p obj object's internal
* items list is changed. It should be fetched again with another
@ -388,7 +388,7 @@ EAPI Elm_Object_Item *elm_slideshow_item_current_get(const Evas_Object *obj
* lower level callbacks for events on that object. Do not delete
* this object under any circumstances.
*
* @see elm_slideshow_item_data_get()
* @see elm_object_item_data_get()
*
* @ingroup Slideshow
*/