diff options
Diffstat (limited to 'core')
-rw-r--r-- | core/fpdfdoc/cpdf_formfield.cpp | 5 | ||||
-rw-r--r-- | core/fpdfdoc/cpdf_formfield.h | 1 |
2 files changed, 0 insertions, 6 deletions
diff --git a/core/fpdfdoc/cpdf_formfield.cpp b/core/fpdfdoc/cpdf_formfield.cpp index 540e1c9ae0..ae10b9e39d 100644 --- a/core/fpdfdoc/cpdf_formfield.cpp +++ b/core/fpdfdoc/cpdf_formfield.cpp @@ -289,11 +289,6 @@ ByteString CPDF_FormField::GetDefaultStyle() const { return pObj ? pObj->GetString() : ""; } -WideString CPDF_FormField::GetRichTextString() const { - CPDF_Object* pObj = FPDF_GetFieldAttr(m_pDict.Get(), "RV"); - return pObj ? pObj->GetUnicodeText() : L""; -} - WideString CPDF_FormField::GetValue(bool bDefault) const { if (GetType() == CheckBox || GetType() == RadioButton) return GetCheckValue(bDefault); diff --git a/core/fpdfdoc/cpdf_formfield.h b/core/fpdfdoc/cpdf_formfield.h index 4f25465b43..b79e430dee 100644 --- a/core/fpdfdoc/cpdf_formfield.h +++ b/core/fpdfdoc/cpdf_formfield.h @@ -129,7 +129,6 @@ class CPDF_FormField { uint32_t GetFieldFlags() const; ByteString GetDefaultStyle() const; - WideString GetRichTextString() const; WideString GetValue() const; WideString GetDefaultValue() const; |