remove code related with elm_panel_content_XXX

which was deprecated


SVN revision: 69090
This commit is contained in:
Jiyoun Park 2012-03-09 11:26:41 +00:00
parent cc173f0c50
commit 0639bbcfef
2 changed files with 0 additions and 44 deletions

View File

@ -370,24 +370,6 @@ elm_panel_orient_get(const Evas_Object *obj)
return wd->orient;
}
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)
{

View File

@ -87,32 +87,6 @@ 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);
/**
* @}
*/