remove code related with elm_panel_content_XXX
authorjypark <jypark@7cbeb6ba-43b4-40fd-8cce-4c39aea84d33>
Fri, 9 Mar 2012 11:26:41 +0000 (11:26 +0000)
committerjypark <jypark@7cbeb6ba-43b4-40fd-8cce-4c39aea84d33>
Fri, 9 Mar 2012 11:26:41 +0000 (11:26 +0000)
which was deprecated

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

src/lib/elm_panel.c
src/lib/elm_panel.h

index b4de56d..a93a7e0 100644 (file)
@@ -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);
index 088168e..c41fae8 100644 (file)
@@ -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);
-
-/**
  * @}
  */