Elementary: Removed trailing whitespaces except for some files that

raster is heavily working on recently.


SVN revision: 59683
This commit is contained in:
Daniel Juyung Seo 2011-05-26 00:39:12 +00:00
parent bff85e95bd
commit 9005f95c62
4 changed files with 11 additions and 9 deletions

View 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);

View 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);
}

View 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;
}

View 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)
{