diff options
author | Lei Zhang <thestig@chromium.org> | 2017-08-28 11:34:16 -0700 |
---|---|---|
committer | Chromium commit bot <commit-bot@chromium.org> | 2017-08-28 19:16:33 +0000 |
commit | 2b6e2a7c92a8c2756364a40a22e6f91b910fc514 (patch) | |
tree | 46e43162696ae24be039603cce113abb0167da41 /fpdfsdk/formfiller/cffl_interactiveformfiller.cpp | |
parent | 959279182e2ef325aa2a2a8a45ec4143916ef17c (diff) | |
download | pdfium-2b6e2a7c92a8c2756364a40a22e6f91b910fc514.tar.xz |
Pass more const CFX_Matrix* params in CFFL_FormFiller.
Remove some useless overrides.
Change-Id: Icf4d8bfcca6358ef3f59f768c2d60759d4b05243
Reviewed-on: https://pdfium-review.googlesource.com/10854
Commit-Queue: Lei Zhang <thestig@chromium.org>
Reviewed-by: Henrique Nakashima <hnakashima@chromium.org>
Reviewed-by: dsinclair <dsinclair@chromium.org>
Diffstat (limited to 'fpdfsdk/formfiller/cffl_interactiveformfiller.cpp')
-rw-r--r-- | fpdfsdk/formfiller/cffl_interactiveformfiller.cpp | 4 |
1 files changed, 2 insertions, 2 deletions
diff --git a/fpdfsdk/formfiller/cffl_interactiveformfiller.cpp b/fpdfsdk/formfiller/cffl_interactiveformfiller.cpp index 27a4560581..e4e06d81dd 100644 --- a/fpdfsdk/formfiller/cffl_interactiveformfiller.cpp +++ b/fpdfsdk/formfiller/cffl_interactiveformfiller.cpp @@ -63,7 +63,7 @@ void CFFL_InteractiveFormFiller::OnDraw(CPDFSDK_PageView* pPageView, CFFL_FormFiller* pFormFiller = GetFormFiller(pAnnot, false); if (pFormFiller && pFormFiller->IsValid()) { - pFormFiller->OnDraw(pPageView, pAnnot, pDevice, pUser2Device); + pFormFiller->OnDraw(pPageView, pAnnot, pDevice, *pUser2Device); pAnnot->GetPDFPage(); if (m_pFormFillEnv->GetFocusAnnot() != pAnnot) @@ -97,7 +97,7 @@ void CFFL_InteractiveFormFiller::OnDraw(CPDFSDK_PageView* pPageView, pFormFiller = GetFormFiller(pAnnot, false); if (pFormFiller) { - pFormFiller->OnDrawDeactive(pPageView, pAnnot, pDevice, pUser2Device); + pFormFiller->OnDrawDeactive(pPageView, pAnnot, pDevice, *pUser2Device); } else { pWidget->DrawAppearance(pDevice, *pUser2Device, CPDF_Annot::Normal, nullptr); |