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:
Fred Kiefer 2003-06-26 23:23:31 +00:00
parent a54de4ad91
commit 8acd828096

View file

@ -82,7 +82,7 @@ typedef struct
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
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 isNotShown:1;