summaryrefslogtreecommitdiffstats
path: root/experimental/tqtinterface/qt4/src/3rdparty/opentype/ftxgdef.c
diff options
context:
space:
mode:
Diffstat (limited to 'experimental/tqtinterface/qt4/src/3rdparty/opentype/ftxgdef.c')
-rw-r--r--experimental/tqtinterface/qt4/src/3rdparty/opentype/ftxgdef.c6
1 files changed, 3 insertions, 3 deletions
diff --git a/experimental/tqtinterface/qt4/src/3rdparty/opentype/ftxgdef.c b/experimental/tqtinterface/qt4/src/3rdparty/opentype/ftxgdef.c
index a01ca6453..702e29b96 100644
--- a/experimental/tqtinterface/qt4/src/3rdparty/opentype/ftxgdef.c
+++ b/experimental/tqtinterface/qt4/src/3rdparty/opentype/ftxgdef.c
@@ -1088,7 +1088,7 @@
{
FT_Error error;
FT_UShort class, new_class, index;
- FT_UShort byte, bits, tqmask;
+ FT_UShort byte, bits, mask;
FT_UShort array_index, glyph_index, count;
TTO_ClassRangeRecord* gcrr;
@@ -1157,9 +1157,9 @@
if ( !class )
{
bits = new_class << ( 16 - ( glyph_index % 4 + 1 ) * 4 );
- tqmask = ~( 0x000F << ( 16 - ( glyph_index % 4 + 1 ) * 4 ) );
+ mask = ~( 0x000F << ( 16 - ( glyph_index % 4 + 1 ) * 4 ) );
- ngc[array_index][glyph_index / 4] &= tqmask;
+ ngc[array_index][glyph_index / 4] &= mask;
ngc[array_index][glyph_index / 4] |= bits;
}