From ee938a94fd818765531e88091d6983f5ed1f0a6a Mon Sep 17 00:00:00 2001 From: Jiyoun Park Date: Mon, 12 Mar 2012 10:05:24 +0000 Subject: [PATCH] remove deprecated code related with elm_conformant_content_area_get function. SVN revision: 69242 --- legacy/elementary/src/lib/elm_conform.c | 12 ------------ 1 file changed, 12 deletions(-) diff --git a/legacy/elementary/src/lib/elm_conform.c b/legacy/elementary/src/lib/elm_conform.c index 88d494717a..8e5d756919 100644 --- a/legacy/elementary/src/lib/elm_conform.c +++ b/legacy/elementary/src/lib/elm_conform.c @@ -630,15 +630,3 @@ elm_conformant_add(Evas_Object *parent) _sizing_eval(obj); return obj; } - -EINA_DEPRECATED EAPI Evas_Object * -elm_conformant_content_area_get(const Evas_Object *obj) -{ - ELM_CHECK_WIDTYPE(obj, widtype) NULL; - Widget_Data *wd = elm_widget_data_get(obj); - - if (!wd) return NULL; - /*Finger waggle warning*/ - _elm_dangerous_call_check(__FUNCTION__); - return (Evas_Object *)edje_object_part_object_get(wd->base, "elm.swallow.content"); -}