modify code related elm_hoversel_label and icon(deprecated function)

SVN revision: 68689
This commit is contained in:
Jiyoun Park 2012-03-05 10:04:53 +00:00
parent 05b41d2469
commit 6920a5c1ab
2 changed files with 0 additions and 48 deletions

View File

@ -391,18 +391,6 @@ elm_hoversel_hover_parent_get(const Evas_Object *obj)
return wd->hover_parent;
}
EAPI void
elm_hoversel_label_set(Evas_Object *obj, const char *label)
{
_elm_hoversel_label_set(obj, NULL, label);
}
EAPI const char *
elm_hoversel_label_get(const Evas_Object *obj)
{
return _elm_hoversel_label_get(obj, NULL);
}
EAPI void
elm_hoversel_horizontal_set(Evas_Object *obj, Eina_Bool horizontal)
{
@ -421,24 +409,6 @@ elm_hoversel_horizontal_get(const Evas_Object *obj)
return wd->horizontal;
}
EAPI void
elm_hoversel_icon_set(Evas_Object *obj, Evas_Object *icon)
{
_content_set_hook(obj, "icon", icon);
}
EAPI Evas_Object *
elm_hoversel_icon_get(const Evas_Object *obj)
{
return _content_get_hook(obj, "icon");
}
EAPI Evas_Object *
elm_hoversel_icon_unset(Evas_Object *obj)
{
return _content_unset_hook(obj, "icon");
}
EAPI void
elm_hoversel_hover_begin(Evas_Object *obj)
{

View File

@ -677,18 +677,6 @@ _elm_hover_sub_obj_placement_eval_cb(void *data, Evas *e __UNUSED__, Evas_Object
_elm_hover_sub_obj_placement_eval(data);
}
EAPI void
elm_hover_content_set(Evas_Object *obj, const char *swallow, Evas_Object *content)
{
_content_set_hook(obj, swallow, content);
}
EAPI Evas_Object *
elm_hover_content_get(const Evas_Object *obj, const char *swallow)
{
return _content_get_hook(obj, swallow);
}
static void
_elm_hover_sub_obj_unparent(Evas_Object *obj)
{
@ -705,12 +693,6 @@ _elm_hover_sub_obj_unparent(Evas_Object *obj)
wd->smt_sub = NULL;
}
EAPI Evas_Object *
elm_hover_content_unset(Evas_Object *obj, const char *swallow)
{
return _content_unset_hook(obj, swallow);
}
EAPI const char *
elm_hover_best_content_location_get(const Evas_Object *obj, Elm_Hover_Axis pref_axis)
{