Elementary: Removed trailing whitespaces.

SVN revision: 59260
This commit is contained in:
Daniel Juyung Seo 2011-05-07 08:37:47 +00:00
parent 2c7fc83f40
commit 94cce60218
3 changed files with 10 additions and 10 deletions

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

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

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