remove deprecated function related with
authorjypark <jypark@7cbeb6ba-43b4-40fd-8cce-4c39aea84d33>
Mon, 12 Mar 2012 06:41:35 +0000 (06:41 +0000)
committerjypark <jypark@7cbeb6ba-43b4-40fd-8cce-4c39aea84d33>
Mon, 12 Mar 2012 06:41:35 +0000 (06:41 +0000)
elm_flip_content_back_XXX
elm_flip_front_get
elm_flip_content_front_XXX
function

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

src/lib/elm_flip.c

index 199be56..7410ff1 100644 (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__)
 {