diff options
author | Lei Zhang <thestig@chromium.org> | 2015-10-03 23:26:09 -0700 |
---|---|---|
committer | Lei Zhang <thestig@chromium.org> | 2015-10-03 23:26:09 -0700 |
commit | 8c217c537fc845763018a5d81a8c55b1045f6ccd (patch) | |
tree | c75d60c856e518e36ccd54230cf01935dad07e20 /fpdfsdk/include/formfiller/FFL_FormFiller.h | |
parent | 68bce6cfb69bfdfa9fc75f99d048cd7dbee79ff2 (diff) | |
download | pdfium-8c217c537fc845763018a5d81a8c55b1045f6ccd.tar.xz |
Merge to XFA: Do not call into formfiller code with a NULL PageView.
BUG=537173
TBR=tsepez@chromium.org
Review URL: https://codereview.chromium.org/1376093002 .
(cherry picked from commit ac67d4765a8ac36cd00c9fc8b6f2b80a3e1cff72)
Review URL: https://codereview.chromium.org/1378193006 .
Diffstat (limited to 'fpdfsdk/include/formfiller/FFL_FormFiller.h')
-rw-r--r-- | fpdfsdk/include/formfiller/FFL_FormFiller.h | 4 |
1 files changed, 2 insertions, 2 deletions
diff --git a/fpdfsdk/include/formfiller/FFL_FormFiller.h b/fpdfsdk/include/formfiller/FFL_FormFiller.h index a519a17646..352b695639 100644 --- a/fpdfsdk/include/formfiller/FFL_FormFiller.h +++ b/fpdfsdk/include/formfiller/FFL_FormFiller.h @@ -76,8 +76,8 @@ class CFFL_FormFiller : public IPWL_Provider, public CPWL_TimerHandler { FX_UINT nFlags); virtual FX_BOOL OnChar(CPDFSDK_Annot* pAnnot, FX_UINT nChar, FX_UINT nFlags); - FX_BOOL SetFocusForAnnot(CPDFSDK_Annot* pAnnot, FX_UINT nFlag); - FX_BOOL KillFocusForAnnot(CPDFSDK_Annot* pAnnot, FX_UINT nFlag); + void SetFocusForAnnot(CPDFSDK_Annot* pAnnot, FX_UINT nFlag); + void KillFocusForAnnot(CPDFSDK_Annot* pAnnot, FX_UINT nFlag); // CPWL_TimerHandler void TimerProc() override; |