ami pushed a commit to branch master.

http://git.enlightenment.org/core/elementary.git/commit/?id=63131ef30e237567adbb84d627f2f6de48613482

commit 63131ef30e237567adbb84d627f2f6de48613482
Author: Amitesh Singh <amitesh...@samsung.com>
Date:   Mon Nov 2 08:57:51 2015 +0530

    test_explode: use evas_object_clipees_has instead
    
    fixes memory leak and better performance
---
 src/bin/test_explode.c | 2 +-
 1 file changed, 1 insertion(+), 1 deletion(-)

diff --git a/src/bin/test_explode.c b/src/bin/test_explode.c
index 30f572d..63b1b46 100644
--- a/src/bin/test_explode.c
+++ b/src/bin/test_explode.c
@@ -88,7 +88,7 @@ explode_obj(Evas_Object *obj, int n)
         EINA_LIST_FREE(children, o)
           {
              if (!evas_object_visible_get(o)) continue;
-             if (evas_object_clipees_get(o)) continue;
+             if (evas_object_clipees_has(o)) continue;
 
              n = explode_obj(o, n);
           }

-- 


Reply via email to