| Index: core/fpdfdoc/include/cpdf_variabletext.h
|
| diff --git a/core/fpdfdoc/include/cpdf_variabletext.h b/core/fpdfdoc/include/cpdf_variabletext.h
|
| index 36b2eb46a5d5a5cd3f67d68d1bfe3b0ddf3fc980..86a30289dbf3daa3f4f71f384fda51c5e1f7df2d 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;
|
| };
|
|
|