8140543: Arrange font actions

Reviewed-by: prr, srl, mschoene
This commit is contained in:
Vadim Pakhnushev 2015-10-26 23:41:41 +03:00
parent 11af905b18
commit f03a55be9e
4 changed files with 10 additions and 10 deletions

View File

@ -76,11 +76,11 @@ ByteOffset IndicRearrangementProcessor::processStateEntry(LEGlyphStorage &glyphS
}
if (flags & irfMarkFirst) {
firstGlyph = (le_uint32)currGlyph;
firstGlyph = currGlyph;
}
if (flags & irfMarkLast) {
lastGlyph = (le_uint32)currGlyph;
lastGlyph = currGlyph;
}
doRearrangementAction(glyphStorage, (IndicRearrangementVerb) (flags & irfVerbMask), success);

View File

@ -76,8 +76,8 @@ public:
static UClassID getStaticClassID();
protected:
le_uint32 firstGlyph;
le_uint32 lastGlyph;
le_int32 firstGlyph;
le_int32 lastGlyph;
LEReferenceTo<IndicRearrangementSubtableHeader> indicRearrangementSubtableHeader;
LEReferenceToArrayOf<IndicRearrangementStateEntry> entryTable;

View File

@ -74,11 +74,11 @@ le_uint16 IndicRearrangementProcessor2::processStateEntry(LEGlyphStorage &glyphS
}
if (flags & irfMarkFirst) {
firstGlyph = (le_uint32)currGlyph;
firstGlyph = currGlyph;
}
if (flags & irfMarkLast) {
lastGlyph = (le_uint32)currGlyph;
lastGlyph = currGlyph;
}
doRearrangementAction(glyphStorage, (IndicRearrangementVerb) (flags & irfVerbMask), success);

View File

@ -76,8 +76,8 @@ public:
static UClassID getStaticClassID();
protected:
le_uint32 firstGlyph;
le_uint32 lastGlyph;
le_int32 firstGlyph;
le_int32 lastGlyph;
LEReferenceToArrayOf<IndicRearrangementStateEntry2> entryTable;
LEReferenceTo<IndicRearrangementSubtableHeader2> indicRearrangementSubtableHeader;