diff options
author | dsinclair <dsinclair@chromium.org> | 2016-07-13 10:55:48 -0700 |
---|---|---|
committer | Commit bot <commit-bot@chromium.org> | 2016-07-13 10:55:49 -0700 |
commit | a2919b31197737d35e4e1df53b02f7ee7cb4cf5e (patch) | |
tree | 18cf18a9081ba48d35e218279d017a6be688f029 /core/fpdfdoc/include/cpdf_variabletext.h | |
parent | 38506d3334fe114fb386ea9b719d432ff1760e42 (diff) | |
download | pdfium-a2919b31197737d35e4e1df53b02f7ee7cb4cf5e.tar.xz |
Remove RichText support from fpdfsdk/fxedit.
This CL removes the support code for RichText from fxedit as it is currently unused.
Review-Url: https://codereview.chromium.org/2146503002
Diffstat (limited to 'core/fpdfdoc/include/cpdf_variabletext.h')
-rw-r--r-- | core/fpdfdoc/include/cpdf_variabletext.h | 3 |
1 files changed, 0 insertions, 3 deletions
diff --git a/core/fpdfdoc/include/cpdf_variabletext.h b/core/fpdfdoc/include/cpdf_variabletext.h index 36b2eb46a5..86a30289db 100644 --- a/core/fpdfdoc/include/cpdf_variabletext.h +++ b/core/fpdfdoc/include/cpdf_variabletext.h @@ -102,12 +102,10 @@ class CPDF_VariableText : private CPDF_EditContainer { void SetFontSize(FX_FLOAT fFontSize) { m_fFontSize = fFontSize; } void SetCharArray(int32_t nCharArray = 0) { m_nCharArray = nCharArray; } void SetAutoFontSize(FX_BOOL bAuto = TRUE) { m_bAutoFontSize = bAuto; } - void SetRichText(FX_BOOL bRichText) { m_bRichText = bRichText; } void SetLineLeading(FX_FLOAT fLineLeading) { m_fLineLeading = fLineLeading; } void Initialize(); FX_BOOL IsValid() const { return m_bInitial; } - FX_BOOL IsRichText() const { return m_bRichText; } void RearrangeAll(); void RearrangePart(const CPVT_WordRange& PlaceRange); @@ -245,7 +243,6 @@ class CPDF_VariableText : private CPDF_EditContainer { uint16_t m_wSubWord; FX_FLOAT m_fFontSize; FX_BOOL m_bInitial; - FX_BOOL m_bRichText; CPDF_VariableText::Provider* m_pVTProvider; std::unique_ptr<CPDF_VariableText::Iterator> m_pVTIterator; }; |