Enlightenment CVS committal

Author  : ningerso
Project : e17
Module  : libs/ewl

Dir     : e17/libs/ewl/src/engines/evas


Modified Files:
        ewl_engine_evas.c 


Log Message:
Remove trailing whitespace.

===================================================================
RCS file: /cvs/e/e17/libs/ewl/src/engines/evas/ewl_engine_evas.c,v
retrieving revision 1.16
retrieving revision 1.17
diff -u -3 -r1.16 -r1.17
--- ewl_engine_evas.c   31 Jul 2007 18:35:47 -0000      1.16
+++ ewl_engine_evas.c   23 Aug 2007 05:26:49 -0000      1.17
@@ -27,7 +27,7 @@
 static Evas_Object *ewl_widget_layer_neighbor_find_above(Ewl_Widget *w);
 static Evas_Object *ewl_widget_layer_neighbor_find_below(Ewl_Widget *w);
 
-static void *canvas_funcs[EWL_ENGINE_CANVAS_MAX] = 
+static void *canvas_funcs[EWL_ENGINE_CANVAS_MAX] =
        {
                NULL,
                ee_canvas_output_set,
@@ -216,20 +216,20 @@
 ee_canvas_stack_add(Ewl_Widget *w)
 {
        Evas_Object *smart_parent;
-       
+
        DENTER_FUNCTION(DLEVEL_STABLE);
        DCHECK_PARAM_PTR("w", w);
        DCHECK_TYPE("w", w, EWL_WIDGET_TYPE);
-       
+
        if (w->parent && OBSCURED(w->parent))
                DRETURN(DLEVEL_STABLE);
-       
-       
-       if (w->parent && !w->toplayered) 
+
+
+       if (w->parent && !w->toplayered)
                smart_parent = w->parent->smart_object;
        else {
                Ewl_Embed *emb;
-               
+
                emb = ewl_embed_widget_find(w);
                smart_parent = emb->smart;
        }
@@ -262,7 +262,7 @@
                DRETURN(DLEVEL_STABLE);
 
        /* check first if the widget should be on the top */
-       if (w->toplayered) 
+       if (w->toplayered)
        {
                evas_object_raise(w->smart_object);
                DRETURN(DLEVEL_STABLE);
@@ -273,7 +273,7 @@
                evas_object_stack_above(w->smart_object, p->fx_clip_box);
        else if (layer > 0) {
                Evas_Object *above;
-               
+
                if (!(above = ewl_widget_layer_neighbor_find_above(w)))
                        DWARNING("No object above.");
 
@@ -304,11 +304,11 @@
                DRETURN_PTR(NULL, DLEVEL_STABLE);
 
        o = ol = w->parent->fx_clip_box;
-       
+
        while ((o = evas_object_above_get(o)))
        {
                Ewl_Widget *found;
-               
+
                found = evas_object_data_get(o, "EWL");
                /*
                 * Perhaps it is a cached object so no reason to stop iterating
@@ -317,7 +317,7 @@
                        /* ignore the widget itself */
                        if (w == found)
                                continue;
-                       if (ewl_widget_layer_priority_get(w) <= 
+                       if (ewl_widget_layer_priority_get(w) <=
                                        ewl_widget_layer_priority_get(found))
                                break;
                        ol = o;
@@ -340,11 +340,11 @@
                DRETURN_PTR(NULL, DLEVEL_STABLE);
 
        o = ol = w->parent->fx_clip_box;
-       
+
        while ((o = evas_object_below_get(o)))
        {
                Ewl_Widget *found;
-               
+
                found = evas_object_data_get(o, "EWL");
                /*
                 * Perhaps it is a cached object so no reason to stop iterating
@@ -353,8 +353,8 @@
                        /* ignore the widget itself */
                        if (w == found)
                                continue;
-                       if (ewl_widget_layer_priority_get(w) >= 
-                                       ewl_widget_layer_priority_get(found)) 
+                       if (ewl_widget_layer_priority_get(w) >=
+                                       ewl_widget_layer_priority_get(found))
                                break;
                        ol = o;
                }



-------------------------------------------------------------------------
This SF.net email is sponsored by: Splunk Inc.
Still grepping through log files to find problems?  Stop.
Now Search log events and configuration files using AJAX and a browser.
Download your FREE copy of Splunk now >>  http://get.splunk.com/
_______________________________________________
enlightenment-cvs mailing list
enlightenment-cvs@lists.sourceforge.net
https://lists.sourceforge.net/lists/listinfo/enlightenment-cvs

Reply via email to