diff options
Diffstat (limited to 'fpdfsdk/fpdfxfa/cpdfxfa_page.h')
-rw-r--r-- | fpdfsdk/fpdfxfa/cpdfxfa_page.h | 4 |
1 files changed, 2 insertions, 2 deletions
diff --git a/fpdfsdk/fpdfxfa/cpdfxfa_page.h b/fpdfsdk/fpdfxfa/cpdfxfa_page.h index 1664c2a775..3e2118df6f 100644 --- a/fpdfsdk/fpdfxfa/cpdfxfa_page.h +++ b/fpdfsdk/fpdfxfa/cpdfxfa_page.h @@ -42,7 +42,7 @@ class CPDFXFA_Page final : public IPDF_Page { const CFX_PointF& page_point) const override; bool LoadPage(); - bool LoadPDFPage(CPDF_Dictionary* pageDict); + void LoadPDFPageFromDict(CPDF_Dictionary* pPageDict); CPDF_Document::Extension* GetDocumentExtension() const; int GetPageIndex() const { return m_iPageIndex; } CXFA_FFPageView* GetXFAPageView() const { return m_pXFAPageView; } @@ -59,7 +59,7 @@ class CPDFXFA_Page final : public IPDF_Page { bool LoadXFAPageView(); RetainPtr<CPDF_Page> m_pPDFPage; - CXFA_FFPageView* m_pXFAPageView; + CXFA_FFPageView* m_pXFAPageView = nullptr; UnownedPtr<CPDFXFA_Context> const m_pContext; const int m_iPageIndex; }; |