discomfitor pushed a commit to branch master. http://git.enlightenment.org/core/enlightenment.git/commit/?id=6696c99a26eaec4b362d440efd10fdff5dc124ca
commit 6696c99a26eaec4b362d440efd10fdff5dc124ca Author: Mike Blumenkrantz <[email protected]> Date: Thu Mar 5 12:18:06 2015 -0500 trivial move comp object function --- src/bin/e_comp_object.c | 18 ++++++++++-------- 1 file changed, 10 insertions(+), 8 deletions(-) diff --git a/src/bin/e_comp_object.c b/src/bin/e_comp_object.c index 6ce0fcb..bfada4f 100644 --- a/src/bin/e_comp_object.c +++ b/src/bin/e_comp_object.c @@ -166,6 +166,16 @@ _e_comp_object_event_add(Evas_Object *obj) ///////////////////////////////////// +static void +_e_comp_object_cb_mirror_del(void *data, Evas *e EINA_UNUSED, Evas_Object *obj, void *event_info EINA_UNUSED) +{ + E_Comp_Object *cw = data; + + cw->obj_mirror = eina_list_remove(cw->obj_mirror, obj); +} + +///////////////////////////////////// + static inline Eina_Bool _e_comp_shaped_check(int w, int h, const Eina_Rectangle *rects, int num) { @@ -1991,14 +2001,6 @@ _e_comp_smart_show(Evas_Object *obj) } static void -_e_comp_object_cb_mirror_del(void *data, Evas *e EINA_UNUSED, Evas_Object *obj, void *event_info EINA_UNUSED) -{ - E_Comp_Object *cw = data; - - cw->obj_mirror = eina_list_remove(cw->obj_mirror, obj); -} - -static void _e_comp_smart_del(Evas_Object *obj) { Eina_List *l; --
