Index: xfa/fgas/layout/fgas_textbreak.cpp |
diff --git a/xfa/fgas/layout/fgas_textbreak.cpp b/xfa/fgas/layout/fgas_textbreak.cpp |
index c5a1c2fdccd226ede1502d1535d6a28016911ed8..d30d10525397e612d661356421feb34a7f49b479 100644 |
--- a/xfa/fgas/layout/fgas_textbreak.cpp |
+++ b/xfa/fgas/layout/fgas_textbreak.cpp |
@@ -1439,10 +1439,10 @@ int32_t CFX_TxtBreak::GetDisplayPos(const FX_TXTRUN* pTxtRun, |
uint32_t dwLastProps = FX_GetUnicodeProperties(wLast); |
if ((dwLastProps & FX_CHARTYPEBITSMASK) == |
FX_CHARTYPE_Combination) { |
- CFX_Rect rtBBox; |
- rtBBox.Reset(); |
- if (pFont->GetCharBBox(wLast, rtBBox, FALSE)) { |
- pCharPos->m_OriginY -= fFontSize * rtBBox.height / iMaxHeight; |
+ CFX_Rect rtBox; |
+ rtBox.Reset(); |
+ if (pFont->GetCharBBox(wLast, rtBox, FALSE)) { |
+ pCharPos->m_OriginY -= fFontSize * rtBox.height / iMaxHeight; |
} |
} |
} |