elm: Removed trailing whitespaces.
authorseoz <seoz@7cbeb6ba-43b4-40fd-8cce-4c39aea84d33>
Fri, 19 Aug 2011 15:26:04 +0000 (15:26 +0000)
committerMike McCormack <mj.mccormack@samsung.com>
Mon, 14 Nov 2011 07:47:18 +0000 (16:47 +0900)
I always try to maintain elm with no trailing whitespaces. Please do not commit trailing whitespaces anymore.
I think maintaining a library clean is a good job. Once it gets mess, it's hard to fix them all at once.
1. Removing trailing whitespaces.
2. Fixing indentations.
3. Removing build errors and warnings.

git-svn-id: https://svn.enlightenment.org/svn/e/trunk/elementary@62595 7cbeb6ba-43b4-40fd-8cce-4c39aea84d33

src/lib/elm_access.c
src/lib/elm_button.c

index 7625805..a4e4b7b 100644 (file)
@@ -111,7 +111,7 @@ static void
 _access_obj_del_cb(void *data, Evas *e __UNUSED__, Evas_Object *obj, void *event_info __UNUSED__)
 {
    Elm_Access_Info *ac;
-   
+
    evas_object_event_callback_del_full(obj, EVAS_CALLBACK_MOUSE_IN,
                                        _access_obj_mouse_in_cb, data);
    evas_object_event_callback_del_full(obj, EVAS_CALLBACK_MOUSE_OUT,
@@ -178,7 +178,7 @@ _elm_access_text_get(Elm_Access_Info *ac, int type, Evas_Object *obj, Elm_Widget
 {
    Elm_Access_Item *ai;
    Eina_List *l;
-   
+
    if (!ac) return NULL;
    EINA_LIST_FOREACH(ac->items, l, ai)
      {
@@ -266,7 +266,7 @@ EAPI void
 _elm_access_object_register(Evas_Object *obj, Evas_Object *hoverobj)
 {
    Elm_Access_Info *ac;
-   
+
    evas_object_event_callback_add(hoverobj, EVAS_CALLBACK_MOUSE_IN,
                                   _access_obj_mouse_in_cb, obj);
    evas_object_event_callback_add(hoverobj, EVAS_CALLBACK_MOUSE_OUT,
index 0e7601b..9b58112 100644 (file)
@@ -306,7 +306,7 @@ _activate(Evas_Object *obj)
         wd->timer = NULL;
      }
    wd->repeating = EINA_FALSE;
-   if ((_elm_config->access_mode == ELM_ACCESS_MODE_OFF) || 
+   if ((_elm_config->access_mode == ELM_ACCESS_MODE_OFF) ||
        (_elm_access_2nd_click_timeout(obj)))
      {
         if (_elm_config->access_mode != ELM_ACCESS_MODE_OFF)
@@ -497,7 +497,7 @@ elm_button_add(Evas_Object *parent)
    // TODO: convert Elementary to subclassing of Evas_Smart_Class
    // TODO: and save some bytes, making descriptions per-class and not instance!
    evas_object_smart_callbacks_descriptions_set(obj, _signals);
-   
+
    _elm_access_object_register(obj, wd->btn);
    _elm_access_text_set(_elm_access_object_get(obj),
                         ELM_ACCESS_TYPE, E_("Button"));