From: Jiyoun Park Date: Fri, 9 Mar 2012 11:26:41 +0000 (+0000) Subject: remove code related with elm_panel_content_XXX X-Git-Tag: v1.0.0~407 X-Git-Url: http://review.tizen.org/git/?a=commitdiff_plain;h=fea6ee897a58ff273e0628ef1b60f5a65c1c1582;p=platform%2Fupstream%2Felementary.git remove code related with elm_panel_content_XXX which was deprecated SVN revision: 69090 --- diff --git a/src/lib/elm_panel.c b/src/lib/elm_panel.c index b4de56d..a93a7e0 100644 --- a/src/lib/elm_panel.c +++ b/src/lib/elm_panel.c @@ -371,24 +371,6 @@ elm_panel_orient_get(const Evas_Object *obj) } EAPI void -elm_panel_content_set(Evas_Object *obj, Evas_Object *content) -{ - _content_set_hook(obj, NULL, content); -} - -EAPI Evas_Object * -elm_panel_content_get(const Evas_Object *obj) -{ - return _content_get_hook(obj, NULL); -} - -EAPI Evas_Object * -elm_panel_content_unset(Evas_Object *obj) -{ - return _content_unset_hook(obj, NULL); -} - -EAPI void elm_panel_hidden_set(Evas_Object *obj, Eina_Bool hidden) { ELM_CHECK_WIDTYPE(obj, widtype); diff --git a/src/lib/elm_panel.h b/src/lib/elm_panel.h index 088168e..c41fae8 100644 --- a/src/lib/elm_panel.h +++ b/src/lib/elm_panel.h @@ -88,31 +88,5 @@ EAPI Eina_Bool elm_panel_hidden_get(const Evas_Object *obj); EAPI void elm_panel_toggle(Evas_Object *obj); /** - * @brief Set the content of the panel. - * - * @param obj The panel object - * @param content The content object - */ -EAPI void elm_panel_content_set(Evas_Object *obj, Evas_Object *content); - -/** - * @brief Get the content of the panel. - * - * @param obj The panel object - * @return The content object of the panel or NULL if none is set. - * - * @see elm_panel_content_set() - */ -EAPI Evas_Object * elm_panel_content_get(const Evas_Object *obj); - -/** - * @brief Remove and return the content from the panel. - * - * @param obj The panel object - * @return The content object of the panel or NULL if none is set. - */ -EAPI Evas_Object * elm_panel_content_unset(Evas_Object *obj); - -/** * @} */