| Index: fpdfsdk/src/formfiller/FFL_FormFiller.cpp
|
| diff --git a/fpdfsdk/src/formfiller/FFL_FormFiller.cpp b/fpdfsdk/src/formfiller/FFL_FormFiller.cpp
|
| index 0dab3076f4a8c468cf3b3fc1c28138ba440f495d..31e6cd691ac1b4e9f7e2a983615e4a639b33a2c1 100644
|
| --- a/fpdfsdk/src/formfiller/FFL_FormFiller.cpp
|
| +++ b/fpdfsdk/src/formfiller/FFL_FormFiller.cpp
|
| @@ -243,7 +243,7 @@ FX_BOOL CFFL_FormFiller::OnChar(CPDFSDK_Annot* pAnnot,
|
|
|
| void CFFL_FormFiller::SetFocusForAnnot(CPDFSDK_Annot* pAnnot, FX_UINT nFlag) {
|
| CPDFSDK_Widget* pWidget = (CPDFSDK_Widget*)pAnnot;
|
| - CPDF_Page* pPage = pWidget->GetPDFPage();
|
| + UnderlyingPageType* pPage = pWidget->GetUnderlyingPage();
|
| CPDFSDK_Document* pDoc = m_pApp->GetSDKDocument();
|
| CPDFSDK_PageView* pPageView = pDoc->GetPageView(pPage);
|
| if (CPWL_Wnd* pWnd = GetPDFWindow(pPageView, TRUE))
|
| @@ -461,7 +461,7 @@ CPDF_Rect CFFL_FormFiller::GetPDFWindowRect() const {
|
| }
|
|
|
| CPDFSDK_PageView* CFFL_FormFiller::GetCurPageView() {
|
| - CPDF_Page* pPage = m_pAnnot->GetPDFPage();
|
| + UnderlyingPageType* pPage = m_pAnnot->GetUnderlyingPage();
|
| CPDFSDK_Document* pSDKDoc = m_pApp->GetSDKDocument();
|
| return pSDKDoc ? pSDKDoc->GetPageView(pPage) : nullptr;
|
| }
|
| @@ -612,7 +612,7 @@ void CFFL_FormFiller::InvalidateRect(double left,
|
| double top,
|
| double right,
|
| double bottom) {
|
| - CPDF_Page* pPage = m_pWidget->GetPDFPage();
|
| + UnderlyingPageType* pPage = m_pWidget->GetUnderlyingPage();
|
| m_pApp->FFI_Invalidate(pPage, left, top, right, bottom);
|
| }
|
|
|
|
|