Elementary: Removed trailing whitespaces except for some files that
authorseoz <seoz@7cbeb6ba-43b4-40fd-8cce-4c39aea84d33>
Thu, 26 May 2011 00:39:12 +0000 (00:39 +0000)
committerseoz <seoz@7cbeb6ba-43b4-40fd-8cce-4c39aea84d33>
Thu, 26 May 2011 00:39:12 +0000 (00:39 +0000)
raster is heavily working on recently.

git-svn-id: svn+ssh://svn.enlightenment.org/var/svn/e/trunk/elementary@59683 7cbeb6ba-43b4-40fd-8cce-4c39aea84d33

src/bin/test_box.c
src/bin/test_table.c
src/lib/elm_grid.c
src/lib/elm_widget.c

index 8bb7e62..b067249 100644 (file)
@@ -23,6 +23,8 @@ test_box_vert(void *data __UNUSED__, Evas_Object *obj __UNUSED__, void *event_in
    evas_object_size_hint_weight_set(bx, EVAS_HINT_EXPAND, EVAS_HINT_EXPAND);
    evas_object_show(bx);
 
+   elm_box_padding_set(bx, 1000, 1000);
+
    ic = elm_icon_add(win);
    snprintf(buf, sizeof(buf), "%s/images/logo_small.png", PACKAGE_DATA_DIR);
    elm_icon_file_set(ic, buf, NULL);
index 6f89a11..81e9227 100644 (file)
@@ -138,7 +138,7 @@ my_tb_ch(void *data, Evas_Object *obj __UNUSED__, void *event_info __UNUSED__)
    Evas_Object *win = data;
    Evas_Object *tb = evas_object_data_get(win, "tb");
    Evas_Object *b2 = evas_object_data_get(win, "b2");
-   
+
    elm_table_unpack(tb, b2);
    elm_table_pack(tb, b2, 1, 0, 1, 2);
 }
index 4e0cae6..c574a5a 100644 (file)
@@ -41,10 +41,10 @@ _elm_grid_focus_next_hook(const Evas_Object *obj, Elm_Focus_Direction dir, Evas_
    const Eina_List *items;
    void *(*list_data_get) (const Eina_List *list);
    Eina_List *(*list_free) (Eina_List *list);
-   
+
    if ((!wd) || (!wd->grd))
       return EINA_FALSE;
-   
+
    /* Focus chain */
    /* TODO: Change this to use other chain */
    if ((items = elm_widget_focus_custom_chain_get(obj)))
@@ -57,16 +57,16 @@ _elm_grid_focus_next_hook(const Evas_Object *obj, Elm_Focus_Direction dir, Evas_
         items = evas_object_grid_children_get(wd->grd);
         list_data_get = eina_list_data_get;
         list_free = eina_list_free;
-        
+
         if (!items) return EINA_FALSE;
      }
-   
+
    Eina_Bool ret = elm_widget_focus_list_next_get(obj, items, list_data_get,
                                                   dir, next);
-   
+
    if (list_free)
       list_free((Eina_List *)items);
-   
+
    return ret;
 }
 
@@ -115,7 +115,7 @@ elm_grid_add(Evas_Object *parent)
    wd->grd = evas_object_grid_add(e);
    evas_object_grid_size_set(wd->grd, 100, 100);
    elm_widget_resize_object_set(obj, wd->grd);
-   
+
    _mirrored_set(obj, elm_widget_mirrored_get(obj));
    return obj;
 }
index 2f87d52..62aee87 100644 (file)
@@ -2877,7 +2877,7 @@ _smart_hide(Evas_Object *obj)
    Eina_List *list;
    Evas_Object *o;
    INTERNAL_ENTRY
-      
+
    list = evas_object_smart_members_get(obj);
    EINA_LIST_FREE(list, o)
      {