Enlightenment CVS committal

Author  : ningerso
Project : e17
Module  : libs/ewl

Dir     : e17/libs/ewl/src/bin/tests/puzzle


Modified Files:
        ewl_puzzle.c 


Log Message:
Remove trailing whitespace.

===================================================================
RCS file: /cvs/e/e17/libs/ewl/src/bin/tests/puzzle/ewl_puzzle.c,v
retrieving revision 1.6
retrieving revision 1.7
diff -u -3 -r1.6 -r1.7
--- ewl_puzzle.c        4 Jun 2007 18:46:35 -0000       1.6
+++ ewl_puzzle.c        23 Aug 2007 05:26:47 -0000      1.7
@@ -20,7 +20,7 @@
 static Ewl_Widget *childs[4][4];
 static int free_col, free_row;
 
-void 
+void
 test_info(Ewl_Test *test)
 {
        test->name = "Puzzle";
@@ -37,7 +37,7 @@
        Ewl_Widget *grid;
        Ewl_Widget *hbox;
        Ewl_Widget *c;
-       
+
        /*
         * set up the outer grid
         */
@@ -46,7 +46,7 @@
        ewl_grid_dimensions_set(EWL_GRID(c), 1, 2);
        ewl_grid_row_preferred_h_use(EWL_GRID(c), 1);
        ewl_widget_show(c);
-       
+
        /*
         * the first hbox
         */
@@ -56,7 +56,7 @@
 
 
        /*
-        * set up the grid 
+        * set up the grid
         */
        grid = ewl_grid_new();
        ewl_grid_dimensions_set(EWL_GRID(grid), 4, 4);
@@ -65,7 +65,7 @@
        ewl_widget_show(grid);
 
        puzzle_grid_fill(EWL_GRID(grid));
-       
+
        /* the seperator */
        w = ewl_vseparator_new();
        ewl_container_child_append(EWL_CONTAINER(hbox), w);
@@ -81,7 +81,7 @@
        ewl_object_fill_policy_set(EWL_OBJECT(w), EWL_FLAG_FILL_FILL);
        ewl_container_child_append(EWL_CONTAINER(hbox), w);
        ewl_widget_show(w);
-       
+
        /*
         * the hbox
         */
@@ -95,7 +95,7 @@
        w = ewl_text_new();
        ewl_object_insets_set(EWL_OBJECT(w), 10, 10, 10, 10);
        ewl_text_wrap_set(EWL_TEXT(w), TRUE);
-       ewl_text_text_append(EWL_TEXT(w), 
+       ewl_text_text_append(EWL_TEXT(w),
                        "The rules are really simple. Just try\n"
                        "to have the same image on your left\n"
                        "like you have on your right hand.");
@@ -110,7 +110,7 @@
        ewl_callback_append(w, EWL_CALLBACK_CLICKED, puzzle_clicked_cb, grid);
        ewl_container_child_append(EWL_CONTAINER(hbox), w);
        ewl_widget_show(w);
-       
+
        return 1;
 }
 
@@ -119,7 +119,7 @@
 {
        Ewl_Widget *w;
        int i, random;
-       int unsort[6][15] = 
+       int unsort[6][15] =
                {{4, 2, 5, 14, 0, 11, 6, 13, 10, 12, 1, 9, 8, 7, 3},
                 {0, 2, 3, 7, 8, 4, 1, 6, 12, 5, 10, 11, 9, 13, 14},
                 {1, 2, 6, 3, 13, 7, 10, 11, 0, 5, 12, 14, 4, 8, 9},
@@ -129,28 +129,28 @@
 
        /* a really stupid randomizer */
        random = time(NULL) % 6;
-       
+
        /*
         * fill the grid with content
         */
        for (i = 0; i < 15; i++)
        {
                char buf[PATH_MAX];
-               
+
                snprintf(buf, sizeof(buf), PACKAGE_DATA_DIR
                                "/ewl/images/e-logo-%i.png", unsort[random][i]);
-               
+
                w = ewl_image_new();
                ewl_image_file_path_set(EWL_IMAGE(w), buf);
                ewl_image_proportional_set(EWL_IMAGE(w), FALSE);
                ewl_object_fill_policy_set(EWL_OBJECT(w), EWL_FLAG_FILL_FILL);
                ewl_container_child_append(EWL_CONTAINER(grid), w);
-               ewl_grid_child_position_set(EWL_GRID(grid), w, 
+               ewl_grid_child_position_set(EWL_GRID(grid), w,
                                i % 4, i % 4, i / 4, i / 4);
-               ewl_callback_append(w, EWL_CALLBACK_MOUSE_UP, 
+               ewl_callback_append(w, EWL_CALLBACK_MOUSE_UP,
                                        puzzle_mouse_up_cb, grid);
                ewl_widget_show(w);
-               
+
                childs[i % 4][i / 4] = w;
        }
        free_col = free_row = 3;
@@ -196,7 +196,7 @@
 
                if (sign(free_row - row) != direction)
                        return;
-               
+
                for (i = free_row; i != row; i -= direction) {
                        Ewl_Widget *move;
 
@@ -217,7 +217,7 @@
 
                if (sign(free_col - col) != direction)
                        return;
-               
+
                for (i = free_col; i != col; i -= direction) {
                        Ewl_Widget *move;
 
@@ -230,14 +230,14 @@
        }
 }
 
-static int 
+static int
 sign(int x)
 {
        if (x > 0)
                return 1;
        if (x < 0)
                return -1;
-       
+
        return 0;
 }
 



-------------------------------------------------------------------------
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