remove deprecated function related with

elm_flip_content_back_XXX
elm_flip_front_get
elm_flip_content_front_XXX
function


SVN revision: 69220
This commit is contained in:
Jiyoun Park 2012-03-12 06:41:35 +00:00
parent e792b92635
commit 018f1e40c9
1 changed files with 0 additions and 42 deletions

View File

@ -1773,42 +1773,6 @@ elm_flip_add(Evas_Object *parent)
return obj;
}
EAPI void
elm_flip_content_front_set(Evas_Object *obj, Evas_Object *content)
{
elm_object_part_content_set(obj, NULL, content);
}
EAPI void
elm_flip_content_back_set(Evas_Object *obj, Evas_Object *content)
{
elm_object_part_content_set(obj, "back", content);
}
EAPI Evas_Object *
elm_flip_content_front_get(const Evas_Object *obj)
{
return elm_object_part_content_get(obj, NULL);
}
EAPI Evas_Object *
elm_flip_content_back_get(const Evas_Object *obj)
{
return elm_object_part_content_get(obj, "back");
}
EAPI Evas_Object *
elm_flip_content_front_unset(Evas_Object *obj)
{
return elm_object_part_content_unset(obj, NULL);
}
EAPI Evas_Object *
elm_flip_content_back_unset(Evas_Object *obj)
{
return elm_object_part_content_unset(obj, "back");
}
EAPI Eina_Bool
elm_flip_front_visible_get(const Evas_Object *obj)
{
@ -1818,12 +1782,6 @@ elm_flip_front_visible_get(const Evas_Object *obj)
return wd->state;
}
EAPI Eina_Bool
elm_flip_front_get(const Evas_Object *obj)
{
return elm_flip_front_visible_get(obj);
}
EAPI void
elm_flip_perspective_set(Evas_Object *obj, Evas_Coord foc __UNUSED__, Evas_Coord x __UNUSED__, Evas_Coord y __UNUSED__)
{