remove code related with

elm_entry_icon_
elm_entry_end_
which was deprecated


SVN revision: 69110
This commit is contained in:
Jiyoun Park 2012-03-09 15:29:27 +00:00
parent d16e5bf412
commit 8a44a6ab11
2 changed files with 1 additions and 45 deletions

View File

@ -3503,28 +3503,6 @@ elm_entry_scrollable_get(const Evas_Object *obj)
return wd->scroll;
}
EAPI void
elm_entry_icon_set(Evas_Object *obj, Evas_Object *icon)
{
ELM_CHECK_WIDTYPE(obj, widtype);
EINA_SAFETY_ON_NULL_RETURN(icon);
_content_set_hook(obj, NULL, icon);
}
EAPI Evas_Object *
elm_entry_icon_get(const Evas_Object *obj)
{
ELM_CHECK_WIDTYPE(obj, widtype) NULL;
return _content_get_hook(obj, NULL);
}
EAPI Evas_Object *
elm_entry_icon_unset(Evas_Object *obj)
{
ELM_CHECK_WIDTYPE(obj, widtype) NULL;
return _content_unset_hook(obj, NULL);
}
EAPI void
elm_entry_icon_visible_set(Evas_Object *obj, Eina_Bool setting)
{
@ -3545,28 +3523,6 @@ elm_entry_icon_visible_set(Evas_Object *obj, Eina_Bool setting)
_sizing_eval(obj);
}
EAPI void
elm_entry_end_set(Evas_Object *obj, Evas_Object *end)
{
ELM_CHECK_WIDTYPE(obj, widtype);
EINA_SAFETY_ON_NULL_RETURN(end);
_content_set_hook(obj, "end", end);
}
EAPI Evas_Object *
elm_entry_end_get(const Evas_Object *obj)
{
ELM_CHECK_WIDTYPE(obj, widtype) NULL;
return _content_get_hook(obj, "end");
}
EAPI Evas_Object *
elm_entry_end_unset(Evas_Object *obj)
{
ELM_CHECK_WIDTYPE(obj, widtype) NULL;
return _content_unset_hook(obj, "end");
}
EAPI void
elm_entry_end_visible_set(Evas_Object *obj, Eina_Bool setting)
{

View File

@ -1109,7 +1109,7 @@ EAPI Eina_Bool elm_entry_scrollable_get(const Evas_Object *obj);
/**
* Sets the visibility of the left-side widget of the entry,
* set by elm_entry_icon_set().
* set by elm_object_part_content_set().
*
* @param obj The entry object
* @param setting EINA_TRUE if the object should be displayed,