hermet pushed a commit to branch master.

commit 898caee04d3eb04da00057200177385fa4783e96
Author: ChunEon Park <[email protected]>
Date:   Thu Jul 11 14:00:18 2013 +0900

    evas - use Eina_Bool
---
 src/lib/evas/canvas/evas_main.c | 8 ++++----
 1 file changed, 4 insertions(+), 4 deletions(-)

diff --git a/src/lib/evas/canvas/evas_main.c b/src/lib/evas/canvas/evas_main.c
index a0b2116..76b5b91 100644
--- a/src/lib/evas/canvas/evas_main.c
+++ b/src/lib/evas/canvas/evas_main.c
@@ -192,7 +192,7 @@ _destructor(Eo *eo_e, void *_pd, va_list *list EINA_UNUSED)
    Evas_Layer *lay;
    Evas_Out *evo;
    int i;
-   int del;
+   Eina_Bool del;
 
    if (e->walking_list == 0) evas_render_idle_flush(eo_e);
 
@@ -201,12 +201,12 @@ _destructor(Eo *eo_e, void *_pd, va_list *list 
EINA_UNUSED)
 
    _evas_post_event_callback_free(eo_e);
 
-   del = 1;
+   del = EINA_TRUE;
    e->walking_list++;
    e->cleanup = 1;
    while (del)
      {
-        del = 0;
+        del = EINA_FALSE;
         EINA_INLIST_FOREACH(e->layers, lay)
           {
              Evas_Object_Protected_Data *o;
@@ -216,7 +216,7 @@ _destructor(Eo *eo_e, void *_pd, va_list *list EINA_UNUSED)
              EINA_INLIST_FOREACH(lay->objects, o)
                {
                   if (!o->delete_me)
-                    del = 1;
+                    del = EINA_TRUE;
                }
           }
      }

-- 

------------------------------------------------------------------------------
See everything from the browser to the database with AppDynamics
Get end-to-end visibility with application monitoring from AppDynamics
Isolate bottlenecks and diagnose root cause in seconds.
Start your free trial of AppDynamics Pro today!
http://pubads.g.doubleclick.net/gampad/clk?id=48808831&iu=/4140/ostg.clktrk

Reply via email to