discomfitor pushed a commit to branch master. http://git.enlightenment.org/core/enlightenment.git/commit/?id=f130aeafcedc9219ffc7d29971064b604c3cdd39
commit f130aeafcedc9219ffc7d29971064b604c3cdd39 Author: Mike Blumenkrantz <zm...@osg.samsung.com> Date: Fri Mar 13 16:23:37 2015 -0400 remove e_comp_evas_find() usage --- src/bin/e_fm.c | 2 +- src/modules/notification/e_mod_popup.c | 2 +- 2 files changed, 2 insertions(+), 2 deletions(-) diff --git a/src/bin/e_fm.c b/src/bin/e_fm.c index c681301..4045b7e 100644 --- a/src/bin/e_fm.c +++ b/src/bin/e_fm.c @@ -10389,7 +10389,7 @@ _e_fm2_icon_entry_widget_del(E_Fm2_Icon *ic) ic->sd->typebuf.disabled = EINA_FALSE; if (ic->keygrab) { - if (e_comp_evas_find(evas_object_evas_get(ic->obj))) + if (evas_object_evas_get(ic->obj) == e_comp->evas) e_comp_ungrab_input(e_comp, 0, 1); } ic->keygrab = 0; diff --git a/src/modules/notification/e_mod_popup.c b/src/modules/notification/e_mod_popup.c index bc72232..866c465 100644 --- a/src/modules/notification/e_mod_popup.c +++ b/src/modules/notification/e_mod_popup.c @@ -355,7 +355,7 @@ _notification_popup_new(E_Notification_Notify *n, unsigned id) evas_object_show(popup->win); if (notification_cfg->dual_screen == POPUP_DISPLAY_POLICY_ALL) { - EINA_LIST_FOREACH(e_comp_evas_find(evas_object_evas_get(popup->win))->zones, l, zone) + EINA_LIST_FOREACH(e_comp->zones, l, zone) { Evas_Object *o; int x, y, w, h; --