| Index: core/src/fpdftext/text_int.h
|
| diff --git a/core/src/fpdftext/text_int.h b/core/src/fpdftext/text_int.h
|
| index 01d10236fc65576c4625c44a49d0d058a53cf4c6..70c53d909fe16b2903a17138b908c8c4c7180507 100644
|
| --- a/core/src/fpdftext/text_int.h
|
| +++ b/core/src/fpdftext/text_int.h
|
| @@ -33,7 +33,7 @@ typedef struct _PAGECHAR_INFO {
|
| FX_WCHAR m_Unicode;
|
| FX_FLOAT m_OriginX;
|
| FX_FLOAT m_OriginY;
|
| - FX_INT32 m_Flag;
|
| + int32_t m_Flag;
|
| CFX_FloatRect m_CharBox;
|
| CPDF_TextObject* m_pTextObj;
|
| CFX_AffineMatrix m_Matrix;
|
| @@ -108,16 +108,16 @@ private:
|
| int GetCharWidth(FX_DWORD charCode, CPDF_Font* pFont) const;
|
| void CloseTempLine();
|
| void OnPiece(IFX_BidiChar* pBidi, CFX_WideString& str);
|
| - FX_INT32 PreMarkedContent(PDFTEXT_Obj pObj);
|
| + int32_t PreMarkedContent(PDFTEXT_Obj pObj);
|
| void ProcessMarkedContent(PDFTEXT_Obj pObj);
|
| - void CheckMarkedContentObject(FX_INT32& start, FX_INT32& nCount) const;
|
| + void CheckMarkedContentObject(int32_t& start, int32_t& nCount) const;
|
| void FindPreviousTextObject(void);
|
| void AddCharInfoByLRDirection(CFX_WideString& str, int i);
|
| void AddCharInfoByRLDirection(CFX_WideString& str, int i);
|
| - FX_INT32 GetTextObjectWritingMode(const CPDF_TextObject* pTextObj);
|
| - FX_INT32 FindTextlineFlowDirection();
|
| - void SwapTempTextBuf(FX_INT32 iCharListStartAppend,
|
| - FX_INT32 iBufStartAppend);
|
| + int32_t GetTextObjectWritingMode(const CPDF_TextObject* pTextObj);
|
| + int32_t FindTextlineFlowDirection();
|
| + void SwapTempTextBuf(int32_t iCharListStartAppend,
|
| + int32_t iBufStartAppend);
|
| FX_BOOL IsRightToLeft(const CPDF_TextObject* pTextObj,
|
| const CPDF_Font* pFont,
|
| int nItems) const;
|
|
|