formatting

SVN revision: 73220
This commit is contained in:
Mike Blumenkrantz 2012-07-03 10:01:37 +00:00
parent f23a7afa40
commit 398a773208
1 changed files with 234 additions and 229 deletions

View File

@ -13,10 +13,12 @@ struct _E_Smart_Data
unsigned char horizontal : 1; unsigned char horizontal : 1;
unsigned char homogenous : 1; unsigned char homogenous : 1;
Eina_List *items; Eina_List *items;
struct { struct
{
Evas_Coord w, h; Evas_Coord w, h;
} min, max; } min, max;
struct { struct
{
double x, y; double x, y;
} align; } align;
}; };
@ -28,10 +30,12 @@ struct _E_Box_Item
unsigned char fill_h : 1; unsigned char fill_h : 1;
unsigned char expand_w : 1; unsigned char expand_w : 1;
unsigned char expand_h : 1; unsigned char expand_h : 1;
struct { struct
{
Evas_Coord w, h; Evas_Coord w, h;
} min, max; } min, max;
struct { struct
{
double x, y; double x, y;
} align; } align;
Evas_Object *obj; Evas_Object *obj;
@ -813,3 +817,4 @@ _e_box_smart_clip_unset(Evas_Object *obj)
if (!sd) return; if (!sd) return;
evas_object_clip_unset(sd->clip); evas_object_clip_unset(sd->clip);
} }