Changed element char_offset of structure glyph_t to unsigned.

git-svn-id: svn+ssh://svn.gna.org/svn/gnustep/libs/gui/trunk@17040 72102866-910b-0410-8b05-ffd578937521
This commit is contained in:
FredKiefer 2003-06-26 23:23:31 +00:00
parent 52ff1c1680
commit 5eb434c3fd

View file

@ -82,7 +82,7 @@ typedef struct
is necessary, the mapping will have to be range to range. (Eg. if you is necessary, the mapping will have to be range to range. (Eg. if you
have characters 'ab' mapped to glyphs 'AB', reordered to 'BA', then the have characters 'ab' mapped to glyphs 'AB', reordered to 'BA', then the
range 'ab' will be mapped to the range 'BA'. */ range 'ab' will be mapped to the range 'BA'. */
int char_offset:21; /* This could be made a lot smaller, if necessary */ unsigned int char_offset:21; /* This could be made a lot smaller, if necessary */
unsigned int drawsOutsideLineFragment:1; unsigned int drawsOutsideLineFragment:1;
unsigned int isNotShown:1; unsigned int isNotShown:1;