diff --git a/legacy/elementary/src/lib/elc_hoversel.c b/legacy/elementary/src/lib/elc_hoversel.c index c982f10895..cd5743d825 100644 --- a/legacy/elementary/src/lib/elc_hoversel.c +++ b/legacy/elementary/src/lib/elc_hoversel.c @@ -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) { diff --git a/legacy/elementary/src/lib/elm_hover.c b/legacy/elementary/src/lib/elm_hover.c index 55cb26c36d..b3aea0dd68 100644 --- a/legacy/elementary/src/lib/elm_hover.c +++ b/legacy/elementary/src/lib/elm_hover.c @@ -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) {