diff options
author | weili <weili@chromium.org> | 2016-05-20 17:09:48 -0700 |
---|---|---|
committer | Commit bot <commit-bot@chromium.org> | 2016-05-20 17:09:48 -0700 |
commit | a2c06e4a667a45a267f9382d0d90ab689c89d0cf (patch) | |
tree | 8b9290f82e906a665446b6a606da9139aba2fb85 /xfa/fgas/layout/fgas_rtfbreak.h | |
parent | f0a128283aeaeb75ee2f62d0f25ba42ac5b07073 (diff) | |
download | pdfium-a2c06e4a667a45a267f9382d0d90ab689c89d0cf.tar.xz |
Use enum type for char type variables
The mixed use of enum and uint32_t causes warnings. And it is more
meaningful to use enum for char type variables.
BUG=pdfium:29
Review-Url: https://codereview.chromium.org/2001733002
Diffstat (limited to 'xfa/fgas/layout/fgas_rtfbreak.h')
-rw-r--r-- | xfa/fgas/layout/fgas_rtfbreak.h | 4 |
1 files changed, 2 insertions, 2 deletions
diff --git a/xfa/fgas/layout/fgas_rtfbreak.h b/xfa/fgas/layout/fgas_rtfbreak.h index d595ad38d1..966950f26c 100644 --- a/xfa/fgas/layout/fgas_rtfbreak.h +++ b/xfa/fgas/layout/fgas_rtfbreak.h @@ -319,7 +319,7 @@ class CFX_RTFBreak { FX_BOOL m_bRTL; int32_t m_iAlignment; IFX_Unknown* m_pUserData; - uint32_t m_dwCharType; + FX_CHARTYPE m_eCharType; uint32_t m_dwIdentity; CFX_RTFLine m_RTFLine1; CFX_RTFLine m_RTFLine2; @@ -331,7 +331,7 @@ class CFX_RTFBreak { CFX_RTFChar* GetLastChar(int32_t index) const; CFX_RTFLine* GetRTFLine(FX_BOOL bReady) const; CFX_RTFPieceArray* GetRTFPieces(FX_BOOL bReady) const; - uint32_t GetUnifiedCharType(uint32_t dwType) const; + FX_CHARTYPE GetUnifiedCharType(FX_CHARTYPE chartype) const; int32_t GetLastPositionedTab() const; FX_BOOL GetPositionedTab(int32_t& iTabPos) const; int32_t GetBreakPos(CFX_RTFCharArray& tca, |