diff options
Diffstat (limited to 'core/fpdfdoc')
-rw-r--r-- | core/fpdfdoc/cpdf_interform.cpp | 6 | ||||
-rw-r--r-- | core/fpdfdoc/cpdf_interform.h | 4 |
2 files changed, 4 insertions, 6 deletions
diff --git a/core/fpdfdoc/cpdf_interform.cpp b/core/fpdfdoc/cpdf_interform.cpp index 2fbc3aa32a..ac15aa66cc 100644 --- a/core/fpdfdoc/cpdf_interform.cpp +++ b/core/fpdfdoc/cpdf_interform.cpp @@ -898,7 +898,7 @@ int CPDF_InterForm::GetFormAlignment() const { return m_pFormDict ? m_pFormDict->GetIntegerFor("Q", 0) : 0; } -bool CPDF_InterForm::ResetForm(const std::vector<CPDF_FormField*>& fields, +void CPDF_InterForm::ResetForm(const std::vector<CPDF_FormField*>& fields, bool bIncludeOrExclude, bool bNotify) { size_t nCount = m_pFieldTree->m_Root.CountFields(); @@ -912,10 +912,9 @@ bool CPDF_InterForm::ResetForm(const std::vector<CPDF_FormField*>& fields, } if (bNotify && m_pFormNotify) m_pFormNotify->AfterFormReset(this); - return true; } -bool CPDF_InterForm::ResetForm(bool bNotify) { +void CPDF_InterForm::ResetForm(bool bNotify) { size_t nCount = m_pFieldTree->m_Root.CountFields(); for (size_t i = 0; i < nCount; ++i) { CPDF_FormField* pField = m_pFieldTree->m_Root.GetFieldAtIndex(i); @@ -926,7 +925,6 @@ bool CPDF_InterForm::ResetForm(bool bNotify) { } if (bNotify && m_pFormNotify) m_pFormNotify->AfterFormReset(this); - return true; } void CPDF_InterForm::LoadField(CPDF_Dictionary* pFieldDict, int nLevel) { diff --git a/core/fpdfdoc/cpdf_interform.h b/core/fpdfdoc/cpdf_interform.h index e2673840c7..2f60bf77b5 100644 --- a/core/fpdfdoc/cpdf_interform.h +++ b/core/fpdfdoc/cpdf_interform.h @@ -80,10 +80,10 @@ class CPDF_InterForm { bool bIncludeOrExclude, bool bSimpleFileSpec) const; - bool ResetForm(const std::vector<CPDF_FormField*>& fields, + void ResetForm(const std::vector<CPDF_FormField*>& fields, bool bIncludeOrExclude, bool bNotify); - bool ResetForm(bool bNotify); + void ResetForm(bool bNotify); void SetFormNotify(IPDF_FormNotify* pNotify); bool HasXFAForm() const; |