Enlightenment CVS committal Author : barbieri Project : e17 Module : libs/edje
Dir : e17/libs/edje/src/lib Modified Files: edje_private.h Log Message: We need to force signed chars when we need the signal. The type "char" is not defined to have a sign or not, for performance issue some platforms (ie: ARM) define it as unsigned. If we need to rely on the sign, must say so. =================================================================== RCS file: /cvs/e/e17/libs/edje/src/lib/edje_private.h,v retrieving revision 1.151 retrieving revision 1.152 diff -u -3 -r1.151 -r1.152 --- edje_private.h 7 Jun 2008 10:06:13 -0000 1.151 +++ edje_private.h 27 Jun 2008 03:14:57 -0000 1.152 @@ -477,8 +477,8 @@ /* davinchi */ int events_id; /* If it is used as scrollbar */ - char x; /* can u click & drag this bit in x dir */ - char y; /* can u click & drag this bit in y dir */ + signed char x; /* can u click & drag this bit in x dir */ + signed char y; /* can u click & drag this bit in y dir */ } dragable; unsigned char type; /* what type (image, rect, text) */ unsigned char effect; /* 0 = plain... */ ------------------------------------------------------------------------- Check out the new SourceForge.net Marketplace. It's the best place to buy or sell services for just about anything Open Source. http://sourceforge.net/services/buy/index.php _______________________________________________ enlightenment-cvs mailing list enlightenment-cvs@lists.sourceforge.net https://lists.sourceforge.net/lists/listinfo/enlightenment-cvs