diff options
author | Dan Sinclair <dsinclair@chromium.org> | 2017-02-28 09:23:37 -0500 |
---|---|---|
committer | Chromium commit bot <commit-bot@chromium.org> | 2017-02-28 19:05:34 +0000 |
commit | 1026eabe4b1916c598531c3489e5d4c845cadfe2 (patch) | |
tree | 6ddf5719e8c8f191193c4a74e6d10e8d7e53648b /xfa/fgas/layout/fgas_rtfbreak.h | |
parent | b3b6e92666b8e2de0d844fb191046dcf30291097 (diff) | |
download | pdfium-1026eabe4b1916c598531c3489e5d4c845cadfe2.tar.xz |
Remove unused RTF Break Policies
The break policy was always set to 0 so it would never match any of the polices.
Removed and simplified the code.
Change-Id: I260631a2210037ae75ca1a3a282a1fe4e7f8ef6f
Reviewed-on: https://pdfium-review.googlesource.com/2873
Reviewed-by: Nicolás Peña <npm@chromium.org>
Reviewed-by: Tom Sepez <tsepez@chromium.org>
Commit-Queue: dsinclair <dsinclair@chromium.org>
Diffstat (limited to 'xfa/fgas/layout/fgas_rtfbreak.h')
-rw-r--r-- | xfa/fgas/layout/fgas_rtfbreak.h | 10 |
1 files changed, 1 insertions, 9 deletions
diff --git a/xfa/fgas/layout/fgas_rtfbreak.h b/xfa/fgas/layout/fgas_rtfbreak.h index 15fdbb807a..1c7260ebdd 100644 --- a/xfa/fgas/layout/fgas_rtfbreak.h +++ b/xfa/fgas/layout/fgas_rtfbreak.h @@ -18,12 +18,6 @@ class CFGAS_GEFont; -#define FX_RTFBREAKPOLICY_None 0x00 -#define FX_RTFBREAKPOLICY_SpaceBreak 0x01 -#define FX_RTFBREAKPOLICY_NumberBreak 0x02 -#define FX_RTFBREAKPOLICY_InfixBreak 0x04 -#define FX_RTFBREAKPOLICY_TabBreak 0x08 -#define FX_RTFBREAKPOLICY_OrphanPositionedTab 0x10 #define FX_RTFBREAK_None 0x00 #define FX_RTFBREAK_PieceBreak 0x01 #define FX_RTFBREAK_LineBreak 0x02 @@ -213,7 +207,7 @@ class CFX_RTFLine { class CFX_RTFBreak { public: - explicit CFX_RTFBreak(uint32_t dwPolicies); + CFX_RTFBreak(); ~CFX_RTFBreak(); void SetLineBoundary(FX_FLOAT fLineStart, FX_FLOAT fLineEnd); @@ -284,7 +278,6 @@ class CFX_RTFBreak { bool bAllChars, uint32_t dwStatus); - uint32_t m_dwPolicies; int32_t m_iBoundaryStart; int32_t m_iBoundaryEnd; uint32_t m_dwLayoutStyles; @@ -297,7 +290,6 @@ class CFX_RTFBreak { int32_t m_iFontSize; int32_t m_iTabWidth; CFX_ArrayTemplate<int32_t> m_PositionedTabs; - bool m_bOrphanLine; FX_WCHAR m_wDefChar; int32_t m_iDefChar; FX_WCHAR m_wLineBreakChar; |