discomfitor pushed a commit to branch master.

http://git.enlightenment.org/core/enlightenment.git/commit/?id=500b9a2eb2b28ec92ee0033cd9edc057c8443382

commit 500b9a2eb2b28ec92ee0033cd9edc057c8443382
Author: Mike Blumenkrantz <zm...@osg.samsung.com>
Date:   Tue Sep 12 13:21:09 2017 -0400

    use animator del function to delete comp object animators
---
 src/bin/e_comp_object.c | 8 ++++----
 1 file changed, 4 insertions(+), 4 deletions(-)

diff --git a/src/bin/e_comp_object.c b/src/bin/e_comp_object.c
index fed61807c..1dc282922 100644
--- a/src/bin/e_comp_object.c
+++ b/src/bin/e_comp_object.c
@@ -2123,7 +2123,7 @@ _e_comp_smart_cb_shading(void *data, Evas_Object *obj 
EINA_UNUSED, void *event_i
    E_Comp_Object *cw = data;
 
    if (!cw->ec) return; //NYI
-   E_FREE_FUNC(cw->shade.anim, ecore_timer_del);
+   E_FREE_FUNC(cw->shade.anim, ecore_animator_del);
 
    cw->shade.x = cw->x;
    cw->shade.y = cw->y;
@@ -2139,7 +2139,7 @@ _e_comp_smart_cb_shaded(void *data, Evas_Object *obj 
EINA_UNUSED, void *event_in
    E_Comp_Object *cw = data;
 
    if (!cw->ec) return; //NYI
-   E_FREE_FUNC(cw->shade.anim, ecore_timer_del);
+   E_FREE_FUNC(cw->shade.anim, ecore_animator_del);
 
    e_comp_object_signal_emit(cw->smart_obj, "e,state,shaded", "e");
    cw->shade.start = -100;
@@ -2153,7 +2153,7 @@ _e_comp_smart_cb_unshading(void *data, Evas_Object *obj 
EINA_UNUSED, void *event
    E_Comp_Object *cw = data;
 
    if (!cw->ec) return; //NYI
-   E_FREE_FUNC(cw->shade.anim, ecore_timer_del);
+   E_FREE_FUNC(cw->shade.anim, ecore_animator_del);
 
    cw->shade.dir = (E_Direction)event_info;
    e_comp_object_signal_emit(cw->smart_obj, "e,state,unshading", "e");
@@ -2167,7 +2167,7 @@ _e_comp_smart_cb_unshaded(void *data, Evas_Object *obj 
EINA_UNUSED, void *event_
    E_Comp_Object *cw = data;
 
    if (!cw->ec) return; //NYI
-   E_FREE_FUNC(cw->shade.anim, ecore_timer_del);
+   E_FREE_FUNC(cw->shade.anim, ecore_animator_del);
 
    cw->shade.dir = (E_Direction)event_info;
    if (cw->shade.dir == E_DIRECTION_UP ||

-- 


Reply via email to