diff options
author | tsepez <tsepez@chromium.org> | 2016-06-09 19:05:47 -0700 |
---|---|---|
committer | Commit bot <commit-bot@chromium.org> | 2016-06-09 19:05:47 -0700 |
commit | 215507d8d612d4269723b49aaf28468b634f68ac (patch) | |
tree | db75d238ac356b58ea796be9ddb441eefeb1dc3d /xfa/fgas/layout/fgas_textbreak.h | |
parent | 6dc1d7753691c0ff2f390e8ffd95a3182064487e (diff) | |
download | pdfium-215507d8d612d4269723b49aaf28468b634f68ac.tar.xz |
Avoid casts via correct types in fgas_textbreak
FLW_DATEINFO cast not required.
Review-Url: https://codereview.chromium.org/2053963002
Diffstat (limited to 'xfa/fgas/layout/fgas_textbreak.h')
-rw-r--r-- | xfa/fgas/layout/fgas_textbreak.h | 12 |
1 files changed, 6 insertions, 6 deletions
diff --git a/xfa/fgas/layout/fgas_textbreak.h b/xfa/fgas/layout/fgas_textbreak.h index 9943eab2c7..94fa79f5a6 100644 --- a/xfa/fgas/layout/fgas_textbreak.h +++ b/xfa/fgas/layout/fgas_textbreak.h @@ -262,12 +262,12 @@ class CFX_TxtBreak { int32_t GetCharRects(const FX_TXTRUN* pTxtRun, CFX_RectFArray& rtArray, FX_BOOL bCharBBox = FALSE) const; - void AppendChar_PageLoad(CFX_Char* pCurChar, uint32_t dwProps); - uint32_t AppendChar_Combination(CFX_Char* pCurChar, int32_t iRotation); - uint32_t AppendChar_Tab(CFX_Char* pCurChar, int32_t iRotation); - uint32_t AppendChar_Control(CFX_Char* pCurChar, int32_t iRotation); - uint32_t AppendChar_Arabic(CFX_Char* pCurChar, int32_t iRotation); - uint32_t AppendChar_Others(CFX_Char* pCurChar, int32_t iRotation); + void AppendChar_PageLoad(CFX_TxtChar* pCurChar, uint32_t dwProps); + uint32_t AppendChar_Combination(CFX_TxtChar* pCurChar, int32_t iRotation); + uint32_t AppendChar_Tab(CFX_TxtChar* pCurChar, int32_t iRotation); + uint32_t AppendChar_Control(CFX_TxtChar* pCurChar, int32_t iRotation); + uint32_t AppendChar_Arabic(CFX_TxtChar* pCurChar, int32_t iRotation); + uint32_t AppendChar_Others(CFX_TxtChar* pCurChar, int32_t iRotation); private: void SetBreakStatus(); |