remove deprecated function related with elm_layout_XXX

SVN revision: 69083
This commit is contained in:
Jiyoun Park 2012-03-09 09:28:04 +00:00
parent a4575b425b
commit d207667980
1 changed files with 0 additions and 33 deletions

View File

@ -513,39 +513,6 @@ elm_layout_theme_set(Evas_Object *obj, const char *clas, const char *group, cons
return ret;
}
EAPI Eina_Bool
elm_layout_content_set(Evas_Object *obj, const char *swallow, Evas_Object *content)
{
_content_set_hook(obj, swallow, content);
return EINA_TRUE;
}
EAPI Evas_Object *
elm_layout_content_get(const Evas_Object *obj, const char *swallow)
{
return _content_get_hook(obj, swallow);
}
EAPI Evas_Object *
elm_layout_content_unset(Evas_Object *obj, const char *swallow)
{
return _content_unset_hook(obj, swallow);
}
EAPI Eina_Bool
elm_layout_text_set(Evas_Object *obj, const char *part, const char *text)
{
_elm_layout_label_set(obj, part, text);
return EINA_TRUE;
}
EAPI const char *
elm_layout_text_get(const Evas_Object *obj, const char *part)
{
return _elm_layout_label_get(obj, part);
}
EAPI Eina_Bool
elm_layout_box_append(Evas_Object *obj, const char *part, Evas_Object *child)
{