Enlightenment CVS committal Author : dj2 Project : e17 Module : libs/ewl
Dir : e17/libs/ewl/src/lib Modified Files: ewl_box.c Log Message: - namespacing =================================================================== RCS file: /cvs/e/e17/libs/ewl/src/lib/ewl_box.c,v retrieving revision 1.36 retrieving revision 1.37 diff -u -3 -r1.36 -r1.37 --- ewl_box.c 6 Feb 2007 13:42:16 -0000 1.36 +++ ewl_box.c 3 Mar 2007 23:21:21 -0000 1.37 @@ -28,20 +28,20 @@ int (*align_ask) (Ewl_Object * ob); void (*align_set) (Ewl_Object * ob, int size); -} Box_Orientation; +} Ewl_Box_Orientation; /* * The information for the two different orientations */ -static Box_Orientation *ewl_box_vertical = NULL; -static Box_Orientation *ewl_box_horizontal = NULL; +static Ewl_Box_Orientation *ewl_box_vertical = NULL; +static Ewl_Box_Orientation *ewl_box_horizontal = NULL; static void ewl_box_cb_shutdown(void); /* * And a pointer to the currently used orientation */ -static Box_Orientation *ewl_box_info = NULL; +static Ewl_Box_Orientation *ewl_box_info = NULL; /* * These lists are used to sort children when configured. @@ -920,7 +920,7 @@ int size, Ewl_Orientation o) { int align_size, fill_size; - Box_Orientation *info; + Ewl_Box_Orientation *info; DENTER_FUNCTION(DLEVEL_STABLE); DCHECK_PARAM_PTR("c", c); @@ -969,7 +969,7 @@ ewl_shutdown_add(ewl_box_cb_shutdown); if (!ewl_box_vertical) { - ewl_box_vertical = NEW(Box_Orientation, 1); + ewl_box_vertical = NEW(Ewl_Box_Orientation, 1); if (!ewl_box_vertical) DRETURN(DLEVEL_STABLE); @@ -1010,7 +1010,7 @@ } if (!ewl_box_horizontal) { - ewl_box_horizontal = NEW(Box_Orientation, 1); + ewl_box_horizontal = NEW(Ewl_Box_Orientation, 1); if (!ewl_box_horizontal) DRETURN(DLEVEL_STABLE); ------------------------------------------------------------------------- Take Surveys. Earn Cash. Influence the Future of IT Join SourceForge.net's Techsay panel and you'll get the chance to share your opinions on IT & business topics through brief surveys-and earn cash http://www.techsay.com/default.php?page=join.php&p=sourceforge&CID=DEVDEV _______________________________________________ enlightenment-cvs mailing list enlightenment-cvs@lists.sourceforge.net https://lists.sourceforge.net/lists/listinfo/enlightenment-cvs