From 5eb434c3fdca20548c092393b7b822872ea32d57 Mon Sep 17 00:00:00 2001 From: FredKiefer Date: Thu, 26 Jun 2003 23:23:31 +0000 Subject: [PATCH] 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 --- Headers/gnustep/gui/GSLayoutManager_internal.h | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/Headers/gnustep/gui/GSLayoutManager_internal.h b/Headers/gnustep/gui/GSLayoutManager_internal.h index d750996ad..f2ee502c9 100644 --- a/Headers/gnustep/gui/GSLayoutManager_internal.h +++ b/Headers/gnustep/gui/GSLayoutManager_internal.h @@ -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;