On Fri, May 28, 2010 at 6:04 PM, Vincent Torri <[email protected]> wrote: > On Fri, 28 May 2010, Enlightenment SVN wrote: > >> Log: >> fix bitfield. >> >> Author: barbieri >> Date: 2010-05-28 13:49:01 -0700 (Fri, 28 May 2010) >> New Revision: 49256 >> >> Modified: >> trunk/e/src/bin/e_desk.h >> >> Modified: trunk/e/src/bin/e_desk.h >> =================================================================== >> --- trunk/e/src/bin/e_desk.h 2010-05-28 20:32:07 UTC (rev 49255) >> +++ trunk/e/src/bin/e_desk.h 2010-05-28 20:49:01 UTC (rev 49256) >> @@ -23,7 +23,7 @@ >> E_Zone *zone; >> const char *name; >> int x, y; >> - char visible : 1; >> + unsigned char visible : 1; >> unsigned int deskshow_toggle : 1; >> int fullscreen_borders; > > you don't use eina_bool ?
yeah, could be. I just did that because everything else was like that (few Eina_Bool). I did the grep for "char .*:" to find them. Maybe we can do a sed and replace all of them with Eina_Bool? BR, -- Gustavo Sverzut Barbieri http://profusion.mobi embedded systems -------------------------------------- MSN: [email protected] Skype: gsbarbieri Mobile: +55 (19) 9225-2202 ------------------------------------------------------------------------------ _______________________________________________ enlightenment-devel mailing list [email protected] https://lists.sourceforge.net/lists/listinfo/enlightenment-devel
