formatting

SVN revision: 73552
This commit is contained in:
Mike Blumenkrantz 2012-07-11 07:14:28 +00:00
parent db8156c94b
commit 0dfbfa0fa4
1 changed files with 23 additions and 22 deletions

View File

@ -150,12 +150,12 @@ _e_wid_reconfigure(E_Widget_Data *wd)
mh = th / wd->dy;
}
if (mw > tw/wd->dx)
if (mw > tw / wd->dx)
mw = (tw * zone->h) / zone->w;
if (mh > th/wd->dy)
if (mh > th / wd->dy)
mh = (th * zone->w) / zone->h;
EINA_LIST_FOREACH_SAFE(wd->desks, l, ll, dw)
EINA_LIST_FOREACH_SAFE (wd->desks, l, ll, dw)
{
if (!(dd = evas_object_data_get(dw, "desk_data"))) continue;
if ((dd->x < wd->dx) && (dd->y < wd->dy))
@ -253,3 +253,4 @@ _e_wid_cb_bg_update(void *data, int type, void *event)
return ECORE_CALLBACK_PASS_ON;
}