| Index: xfa/fgas/layout/fgas_linebreak.cpp
|
| diff --git a/xfa/fgas/layout/fgas_linebreak.cpp b/xfa/fgas/layout/fgas_linebreak.cpp
|
| index 295b5b6b8664ea1d1b78dd5ef892e5e43d7920c1..72f5d703238fbc6e303786f81da3ba4eedd314f3 100644
|
| --- a/xfa/fgas/layout/fgas_linebreak.cpp
|
| +++ b/xfa/fgas/layout/fgas_linebreak.cpp
|
| @@ -273,7 +273,7 @@ void FX_GetLineBreakPositions(const FX_WCHAR* pwsText,
|
| if (iLength < 2) {
|
| return;
|
| }
|
| - FX_DWORD dwCur, dwNext;
|
| + uint32_t dwCur, dwNext;
|
| FX_WCHAR wch;
|
| wch = *pwsText++;
|
| dwCur = kTextLayoutCodeProperties[(uint16_t)wch] & 0x003F;
|
| @@ -298,7 +298,7 @@ void FX_GetLineBreakPositions(const FX_WCHAR* pwsText,
|
| return;
|
| }
|
| FX_LINEBREAKTYPE eType;
|
| - FX_DWORD dwCur, dwNext;
|
| + uint32_t dwCur, dwNext;
|
| FX_WCHAR wch;
|
| wch = *pwsText++;
|
| dwCur = kTextLayoutCodeProperties[(uint16_t)wch] & 0x003F;
|
|
|