| Index: core/src/fxcrt/fx_arabic.cpp
|
| diff --git a/core/src/fxcrt/fx_arabic.cpp b/core/src/fxcrt/fx_arabic.cpp
|
| index 04ce172c3f76ed3b02fff2b33241b8952c1d07cb..30caa24ec2e0eafbb458f3542c9c422bc194ab57 100644
|
| --- a/core/src/fxcrt/fx_arabic.cpp
|
| +++ b/core/src/fxcrt/fx_arabic.cpp
|
| @@ -24,8 +24,8 @@ CFX_BidiChar::CFX_BidiChar()
|
| FX_BOOL CFX_BidiChar::AppendChar(FX_WCHAR wch)
|
| {
|
| FX_DWORD dwProps = gs_FX_TextLayout_CodeProperties[(FX_WORD)wch];
|
| - FX_INT32 iBidiCls = (dwProps & FX_BIDICLASSBITSMASK) >> FX_BIDICLASSBITS;
|
| - FX_INT32 iContext = 0;
|
| + int32_t iBidiCls = (dwProps & FX_BIDICLASSBITSMASK) >> FX_BIDICLASSBITS;
|
| + int32_t iContext = 0;
|
| switch (iBidiCls) {
|
| case FX_BIDICLASS_L:
|
| case FX_BIDICLASS_AN:
|
| @@ -69,7 +69,7 @@ FX_BOOL CFX_BidiChar::EndChar()
|
| m_iLastCount = m_iCurCount - m_iLastStart;
|
| return m_iLastCount > 0;
|
| }
|
| -FX_INT32 CFX_BidiChar::GetBidiInfo(FX_INT32 &iStart, FX_INT32 &iCount)
|
| +int32_t CFX_BidiChar::GetBidiInfo(int32_t &iStart, int32_t &iCount)
|
| {
|
| iStart = m_iLastStart;
|
| iCount = m_iLastCount;
|
|
|