stefan pushed a commit to branch master.

http://git.enlightenment.org/core/efl.git/commit/?id=108ee1d485824a33047867b55f529e63fe11868c

commit 108ee1d485824a33047867b55f529e63fe11868c
Author: Elyes HAOUAS <ehao...@noos.fr>
Date:   Sat Jun 20 09:41:45 2020 +0000

    Get rid of trailing whitespaces (2 / 14)
    
    Remove trailing whitespaces
    Differential Revision: https://phab.enlightenment.org/D12000
---
 src/examples/ecore/ecore_compose_get_example.c                 |  2 +-
 src/examples/ecore/ecore_evas_buffer_example_02.c              |  2 +-
 src/examples/ecore/ecore_evas_extn_plug_example.c              |  2 +-
 src/examples/eina/eina_simple_xml_parser_01.c                  |  2 +-
 src/examples/eina/eina_str_01.c                                |  2 +-
 .../elementary/efl_canvas_textblock_obstacles_example.c        | 10 +++++-----
 src/examples/elementary/filter_example.c                       |  2 +-
 src/examples/evas/evas-object-manipulation-eo.c                |  2 +-
 8 files changed, 12 insertions(+), 12 deletions(-)

diff --git a/src/examples/ecore/ecore_compose_get_example.c 
b/src/examples/ecore/ecore_compose_get_example.c
index b36fd01803..09a567dd5f 100644
--- a/src/examples/ecore/ecore_compose_get_example.c
+++ b/src/examples/ecore/ecore_compose_get_example.c
@@ -21,7 +21,7 @@ static void
 _data_reset(Data *d)
 {
    char *str;
-   
+
    EINA_LIST_FREE(d->seq, str) eina_stringshare_del(str);
    d->composing = EINA_FALSE;
 }
diff --git a/src/examples/ecore/ecore_evas_buffer_example_02.c 
b/src/examples/ecore/ecore_evas_buffer_example_02.c
index 7f3b8e44ef..f908f30ac9 100644
--- a/src/examples/ecore/ecore_evas_buffer_example_02.c
+++ b/src/examples/ecore/ecore_evas_buffer_example_02.c
@@ -95,7 +95,7 @@ main(void)
    evas_object_move(r0, 0, 0);
    evas_object_resize(r0, ((2 * WIDTH) / 3) - 6, ((2 * HEIGHT) / 3) - 6);
    evas_object_show(r0);
-   
+
    r1 = evas_object_rectangle_add(sub_canvas);
    evas_object_color_set(r1, 255, 0, 0, 255); /* 100% opaque red */
    evas_object_move(r1, 10, 10);
diff --git a/src/examples/ecore/ecore_evas_extn_plug_example.c 
b/src/examples/ecore/ecore_evas_extn_plug_example.c
index 1a88e02a96..a002698b88 100644
--- a/src/examples/ecore/ecore_evas_extn_plug_example.c
+++ b/src/examples/ecore/ecore_evas_extn_plug_example.c
@@ -76,7 +76,7 @@ _button_1_up(void *data, Evas *e EINA_UNUSED, Evas_Object 
*obj EINA_UNUSED, void
    color->b = b;
    color->a = a;
 
-   ecore_evas_msg_parent_send(ee, MSG_DOMAIN_CONTROL_OBJECT, MSG_ID_BG_COLOR, 
color, sizeof(Msg_Color)); 
+   ecore_evas_msg_parent_send(ee, MSG_DOMAIN_CONTROL_OBJECT, MSG_ID_BG_COLOR, 
color, sizeof(Msg_Color));
 }
 
 static void
diff --git a/src/examples/eina/eina_simple_xml_parser_01.c 
b/src/examples/eina/eina_simple_xml_parser_01.c
index 824537c3b2..35aa0416ea 100644
--- a/src/examples/eina/eina_simple_xml_parser_01.c
+++ b/src/examples/eina/eina_simple_xml_parser_01.c
@@ -47,7 +47,7 @@ main(void)
                                    _xml_tag_cb, array);
 
              eina_array_foreach(array, _print, NULL);
-        
+
              eina_array_free(array);
              free(buffer);
           }
diff --git a/src/examples/eina/eina_str_01.c b/src/examples/eina/eina_str_01.c
index fbe2cf0815..55b91316df 100644
--- a/src/examples/eina/eina_str_01.c
+++ b/src/examples/eina/eina_str_01.c
@@ -26,7 +26,7 @@ int main(int argc EINA_UNUSED, char **argv EINA_UNUSED)
 
    free(arr[0]);
    free(arr);
-   
+
    str = malloc(sizeof(char) * 4);
    strcpy(str, "bsd");
 
diff --git a/src/examples/elementary/efl_canvas_textblock_obstacles_example.c 
b/src/examples/elementary/efl_canvas_textblock_obstacles_example.c
index d14123a801..b2aca7ee2b 100644
--- a/src/examples/elementary/efl_canvas_textblock_obstacles_example.c
+++ b/src/examples/elementary/efl_canvas_textblock_obstacles_example.c
@@ -1,7 +1,7 @@
 #define EFL_BETA_API_SUPPORT 1
- 
+
 #include <Efl_Ui.h>
- 
+
  /**
  * Example of canvas textblock obstacles.
  *
@@ -114,7 +114,7 @@ _key_down(void *data EINA_UNUSED, const Efl_Event *ev)
 
         printf("Show/hide toggle for obstacle %p\n",
                *d.t_data.obs_ptr);
-               
+
         efl_canvas_textblock_obstacles_update(d.text);
 
         return;
@@ -126,7 +126,7 @@ _key_down(void *data EINA_UNUSED, const Efl_Event *ev)
         POINTER_CYCLE(d.t_data.obs_size_ptr, d.t_data.obs_size);
 
         efl_gfx_entity_size_set(*d.t_data.obs_ptr, 
EINA_SIZE2D(*d.t_data.obs_size_ptr, *d.t_data.obs_size_ptr));
-        
+
         efl_canvas_textblock_obstacles_update(d.text);
 
         printf("Changing obstacle size to: %d,%d\n",
@@ -205,7 +205,7 @@ _gui_quit_cb(void *data EINA_UNUSED, const Efl_Event *event 
EINA_UNUSED)
 
 static void
 _gui_setup()
-{ 
+{
    /* init values one is going to cycle through while running this
     * example */
    struct text_preset_data init_data =
diff --git a/src/examples/elementary/filter_example.c 
b/src/examples/elementary/filter_example.c
index cc05b7d36f..29b86f0e5f 100644
--- a/src/examples/elementary/filter_example.c
+++ b/src/examples/elementary/filter_example.c
@@ -1,7 +1,7 @@
 /**
  * gcc -g filter_example.c -o filter_example `pkg-config --cflags --libs 
elementary`
  */
-#define EFL_BETA_API_SUPPORT 1 
+#define EFL_BETA_API_SUPPORT 1
 #include <Elementary.h>
 
 typedef struct _Filter
diff --git a/src/examples/evas/evas-object-manipulation-eo.c 
b/src/examples/evas/evas-object-manipulation-eo.c
index 6fba6e02bf..eb213d04bb 100644
--- a/src/examples/evas/evas-object-manipulation-eo.c
+++ b/src/examples/evas/evas-object-manipulation-eo.c
@@ -193,7 +193,7 @@ main(void)
     * will be deleted automatically by parent.*/
 
    if (efl_file_set(d.img, img_path)) goto panic;
-   
+
    err = efl_file_load(d.img);
 
    if (err != EVAS_LOAD_ERROR_NONE)

-- 


Reply via email to