diff options
author | Dan Sinclair <dsinclair@chromium.org> | 2017-03-13 10:15:36 -0400 |
---|---|---|
committer | Chromium commit bot <commit-bot@chromium.org> | 2017-03-13 15:27:42 +0000 |
commit | 068d34426272bd7f02ffc12139ddd33ee2e237e6 (patch) | |
tree | 09e138a9673a5e4a967618b7988cff76f8b8b5ad /core | |
parent | a5a3de93dd6e15740a337a28640d13407cb0368f (diff) | |
download | pdfium-068d34426272bd7f02ffc12139ddd33ee2e237e6.tar.xz |
Remove TextBreak rotation code
The rotation value is always 0 so we end up doing nothing for the
rotation.
Change-Id: Ib12a269d4f3c16961b1b934bf9dfc04d1c368e51
Reviewed-on: https://pdfium-review.googlesource.com/2943
Commit-Queue: dsinclair <dsinclair@chromium.org>
Reviewed-by: Nicolás Peña <npm@chromium.org>
Reviewed-by: Tom Sepez <tsepez@chromium.org>
Diffstat (limited to 'core')
-rw-r--r-- | core/fxcrt/fx_ucd.h | 4 |
1 files changed, 1 insertions, 3 deletions
diff --git a/core/fxcrt/fx_ucd.h b/core/fxcrt/fx_ucd.h index ebcf6bbf2b..f8a92a18f2 100644 --- a/core/fxcrt/fx_ucd.h +++ b/core/fxcrt/fx_ucd.h @@ -154,14 +154,12 @@ class CFX_Char { class CFX_TxtChar : public CFX_Char { public: CFX_TxtChar() - : m_nRotation(0), - m_dwCharStyles(0), + : m_dwCharStyles(0), m_iBidiClass(0), m_iBidiLevel(0), m_iBidiPos(0), m_iBidiOrder(0) {} - int8_t m_nRotation; uint32_t m_dwCharStyles; int16_t m_iBidiClass; int16_t m_iBidiLevel; |