diff options
author | Jean-Philippe Andre <jp.andre@samsung.com> | 2018-01-19 17:25:47 +0900 |
---|---|---|
committer | Jean-Philippe Andre <jp.andre@samsung.com> | 2018-01-19 17:30:04 +0900 |
commit | 20570f74d32d49fe09797f24d5a43348fe39dfda (patch) | |
tree | 9d5cae6e44b9613ccd1e96beac93cc40ce273218 /src/lib/elementary/elm_glview.c | |
parent | c35f257bf28b7cd2b31051f462a6b79660844486 (diff) | |
download | efl-20570f74d32d49fe09797f24d5a43348fe39dfda.tar.gz |
widget: Move on_focus_update to Focus.Object
Following @taxi2se's recommendation. This is indeed a focus method, and
Widget already inherits from Focus.Object.
Ping @bu5hm4n who probably wants to adapt this further.
Ref T5363
Diffstat (limited to 'src/lib/elementary/elm_glview.c')
-rw-r--r-- | src/lib/elementary/elm_glview.c | 4 |
1 files changed, 2 insertions, 2 deletions
diff --git a/src/lib/elementary/elm_glview.c b/src/lib/elementary/elm_glview.c index ad91884be6..8f48ba4f38 100644 --- a/src/lib/elementary/elm_glview.c +++ b/src/lib/elementary/elm_glview.c @@ -27,12 +27,12 @@ static const Evas_Smart_Cb_Description _smart_callbacks[] = { }; EOLIAN static Eina_Bool -_elm_glview_efl_ui_widget_on_focus_update(Eo *obj, Elm_Glview_Data *_pd EINA_UNUSED) +_elm_glview_efl_ui_focus_object_on_focus_update(Eo *obj, Elm_Glview_Data *_pd EINA_UNUSED) { ELM_WIDGET_DATA_GET_OR_RETURN(obj, wd, EINA_FALSE); Eina_Bool int_ret = EINA_FALSE; - int_ret = efl_ui_widget_on_focus_update(efl_super(obj, MY_CLASS)); + int_ret = efl_ui_focus_object_on_focus_update(efl_super(obj, MY_CLASS)); if (!int_ret) return EINA_FALSE; if (efl_ui_focus_object_focus_get(obj)) |