From 5f65316713b544df1bbdac586cdf4b4f0939720a Mon Sep 17 00:00:00 2001 From: Yeongjong Lee Date: Wed, 8 Aug 2018 16:11:02 +0900 Subject: [PATCH] elm_map: remove unreasonable efl_super call Summary: Efl_Ui_Widget which is super of Elm_Map is not implement Efl_Ui_Zoom. to call efl_super of Elm_Map for Efl_Ui_Zoom method occurs unresolved function error. Test Plan: map_example_01 Check that there is no error message. Reviewers: zmike, Hermet Reviewed By: Hermet Subscribers: #reviewers, cedric, #committers Tags: #efl Differential Revision: https://phab.enlightenment.org/D6772 --- src/lib/elementary/elm_map.c | 2 -- 1 file changed, 2 deletions(-) diff --git a/src/lib/elementary/elm_map.c b/src/lib/elementary/elm_map.c index cce6484cd3..7280c449d9 100644 --- a/src/lib/elementary/elm_map.c +++ b/src/lib/elementary/elm_map.c @@ -4324,7 +4324,6 @@ _elm_map_efl_ui_zoom_zoom_level_set(Eo *obj, Elm_Map_Data *sd, double zoom) sd->calc_job.zoom_mode_set = _zoom_mode_set; evas_object_smart_changed(sd->pan_obj); - efl_ui_zoom_level_set(efl_super(obj, MY_CLASS), zoom); } EAPI void @@ -4355,7 +4354,6 @@ _elm_map_efl_ui_zoom_zoom_mode_set(Eo *obj, Elm_Map_Data *sd, Efl_Ui_Zoom_Mode m sd->calc_job.zoom_mode_set = _zoom_mode_set; evas_object_smart_changed(sd->pan_obj); - efl_ui_zoom_mode_set(efl_super(obj, MY_CLASS), mode); } static inline void