diff options
author | Lei Zhang <thestig@chromium.org> | 2017-08-28 18:09:38 -0700 |
---|---|---|
committer | Chromium commit bot <commit-bot@chromium.org> | 2017-08-31 15:35:08 +0000 |
commit | af59cf16b40b6243a2194ced3e5f476ec655edb3 (patch) | |
tree | b88fac856dd70edb25d21e14b61b434f5e17cefa /fpdfsdk | |
parent | d120920fe18bcfa3c102ecd0c7502c00d5f0425a (diff) | |
download | pdfium-af59cf16b40b6243a2194ced3e5f476ec655edb3.tar.xz |
Change CPDF_Form::ParseContent() to ParseContentWithParams().
Add a new ParseContent() method as a convenience to call
ParseContentWithParams() with the default parameters.
Change-Id: I274682845a72e125c3fc6299289edb760104ac4d
Reviewed-on: https://pdfium-review.googlesource.com/12250
Commit-Queue: Ryan Harrison <rharrison@chromium.org>
Reviewed-by: Ryan Harrison <rharrison@chromium.org>
Diffstat (limited to 'fpdfsdk')
-rw-r--r-- | fpdfsdk/fpdfannot.cpp | 2 |
1 files changed, 1 insertions, 1 deletions
diff --git a/fpdfsdk/fpdfannot.cpp b/fpdfsdk/fpdfannot.cpp index 8c62ecf311..d6080fd35f 100644 --- a/fpdfsdk/fpdfannot.cpp +++ b/fpdfsdk/fpdfannot.cpp @@ -151,7 +151,7 @@ class CPDF_AnnotContext { m_pAnnotForm = pdfium::MakeUnique<CPDF_Form>( m_pPage->m_pDocument.Get(), m_pPage->m_pResources.Get(), pStream); - m_pAnnotForm->ParseContent(nullptr, nullptr, nullptr); + m_pAnnotForm->ParseContent(); } CPDF_Form* GetForm() const { return m_pAnnotForm.get(); } |