diff --git a/icu4c/source/layout/LookupProcessor.cpp b/icu4c/source/layout/LookupProcessor.cpp index 93bb3c0281..aea5dae754 100644 --- a/icu4c/source/layout/LookupProcessor.cpp +++ b/icu4c/source/layout/LookupProcessor.cpp @@ -1,5 +1,4 @@ /* - * %W% %E% * * (C) Copyright IBM Corp. 1998-2004 - All Rights Reserved * @@ -53,15 +52,15 @@ le_int32 LookupProcessor::process(LEGlyphStorage &glyphStorage, GlyphPositionAdj le_bool rightToLeft, const GlyphDefinitionTableHeader *glyphDefinitionTableHeader, const LEFontInstance *fontInstance) const { - le_int32 glyphCount = glyphStorage.getGlyphCount(); + le_int32 glyphCount = glyphStorage.getGlyphCount(); if (lookupSelectArray == NULL) { return glyphCount; } - GlyphIterator glyphIterator(glyphStorage, glyphPositionAdjustments, - rightToLeft, 0, 0, glyphDefinitionTableHeader); - le_int32 newGlyphCount = glyphCount; + GlyphIterator glyphIterator(glyphStorage, glyphPositionAdjustments, + rightToLeft, 0, 0, glyphDefinitionTableHeader); + le_int32 newGlyphCount = glyphCount; for (le_uint16 order = 0; order < lookupOrderCount; order += 1) { le_uint16 lookup = lookupOrderArray[order]; @@ -71,7 +70,7 @@ le_int32 LookupProcessor::process(LEGlyphStorage &glyphStorage, GlyphPositionAdj const LookupTable *lookupTable = lookupListTable->getLookupTable(lookup); le_uint16 lookupFlags = SWAPW(lookupTable->lookupFlags); - glyphIterator.reset(lookupFlags, selectTag); + glyphIterator.reset(lookupFlags, selectTag); while (glyphIterator.findFeatureTag()) { le_uint32 delta = 1; @@ -81,11 +80,11 @@ le_int32 LookupProcessor::process(LEGlyphStorage &glyphStorage, GlyphPositionAdj } } - newGlyphCount = glyphIterator.applyInsertions(); + newGlyphCount = glyphIterator.applyInsertions(); } } - return newGlyphCount; + return newGlyphCount; } le_uint32 LookupProcessor::applySingleLookup(le_uint16 lookupTableIndex, GlyphIterator *glyphIterator,