Elementary: Removed trailing whitespaces.
authorseoz <seoz@7cbeb6ba-43b4-40fd-8cce-4c39aea84d33>
Sat, 7 May 2011 08:37:47 +0000 (08:37 +0000)
committerseoz <seoz@7cbeb6ba-43b4-40fd-8cce-4c39aea84d33>
Sat, 7 May 2011 08:37:47 +0000 (08:37 +0000)
git-svn-id: https://svn.enlightenment.org/svn/e/trunk/elementary@59260 7cbeb6ba-43b4-40fd-8cce-4c39aea84d33

src/bin/test.c
src/lib/elm_genlist.c
src/lib/elm_win.c

index 50216b6..eb0a430 100644 (file)
@@ -283,7 +283,7 @@ my_win_main(char *autorun)
    ADD_TEST("File Selector Entry", test_fileselector_entry);
    ADD_TEST("Toggles", test_toggle);
    ADD_TEST("Table", test_table);
-   ADD_TEST("Table Homogeneous", test_table2); 
+   ADD_TEST("Table Homogeneous", test_table2);
    ADD_TEST("Clock", test_clock);
    ADD_TEST("Clock 2", test_clock2);
    ADD_TEST("Layout", test_layout);
index 9b3e8cd..a7d70aa 100644 (file)
@@ -3144,14 +3144,14 @@ _item_idle_enterer(void *data)
    Widget_Data *wd = data;
    Eina_Bool wakeup = EINA_FALSE;
    Eina_Bool ok = _idle_process(data, &wakeup);
-   
+
    if (wakeup)
      {
         // wake up mainloop
         if (wd->calc_job) ecore_job_del(wd->calc_job);
         wd->calc_job = ecore_job_add(_calc_job, wd);
      }
-   if (ok == ECORE_CALLBACK_CANCEL) wd->queue_idle_enterer = NULL;   
+   if (ok == ECORE_CALLBACK_CANCEL) wd->queue_idle_enterer = NULL;
    return ok;
 }
 
@@ -3171,7 +3171,7 @@ _item_queue(Widget_Data      *wd,
           }
         _queue_process(wd, 0);
      }
-   if (!wd->queue_idle_enterer) 
+   if (!wd->queue_idle_enterer)
       wd->queue_idle_enterer = ecore_idle_enterer_add(_item_idle_enterer, wd);
 }
 
index e5bb9aa..d036c66 100644 (file)
@@ -111,14 +111,14 @@ _shot_delay_get(Elm_Win *win)
 {
    char *p, *pd;
    char *d = strdup(win->shot.info);
-   
+
    if (!d) return 0.5;
    for (p = (char *)win->shot.info; *p; p++)
      {
         if (!strncmp(p, "delay=", 6))
           {
              double v;
-             
+
              for (pd = d, p += 6; (*p) && (*p != ':'); p++, pd++)
                {
                   *pd = *p;
@@ -138,7 +138,7 @@ _shot_file_get(Elm_Win *win)
 {
    char *p;
    char *tmp = strdup(win->shot.info);
-   
+
    if (!tmp) return NULL;
    for (p = (char *)win->shot.info; *p; p++)
      {
@@ -363,7 +363,7 @@ static void
 _elm_win_obj_callback_show(void *data __UNUSED__, Evas *e __UNUSED__, Evas_Object *obj, void *event_info __UNUSED__)
 {
    Elm_Win *win = data;
-   
+
    elm_object_focus(obj);
    if (win->shot.info) _shot_handle(win);
 }
@@ -628,7 +628,7 @@ _elm_win_xwindow_get(Elm_Win *win)
      {
         if (win->ee) win->xwin = ecore_evas_software_x11_8_window_get(win->ee);
      }
-/* killed        
+/* killed
    else if (ENGINE_COMPARE(ELM_XRENDER_X11))
      {
         if (win->ee) win->xwin = ecore_evas_xrender_x11_window_get(win->ee);
@@ -1358,7 +1358,7 @@ elm_win_add(Evas_Object *parent, const char *name, Elm_Win_Type type)
                 (ECORE_X_EVENT_CLIENT_MESSAGE, _elm_win_client_message, win);
 #endif
           }
-/* killed        
+/* killed
         else if (ENGINE_COMPARE(ELM_XRENDER_X11))
           {
              win->ee = ecore_evas_xrender_x11_new(NULL, 0, 0, 0, 1, 1);