| Index: fpdfsdk/formfiller/cffl_formfiller.h
|
| diff --git a/fpdfsdk/formfiller/cffl_formfiller.h b/fpdfsdk/formfiller/cffl_formfiller.h
|
| index 060eb8f9e751d19336215493dc8cf324b2013a0a..d691e3f6cecf0e560821cdfe71f2f04ca3cfeda3 100644
|
| --- a/fpdfsdk/formfiller/cffl_formfiller.h
|
| +++ b/fpdfsdk/formfiller/cffl_formfiller.h
|
| @@ -28,13 +28,11 @@ class CFFL_FormFiller : public IPWL_Provider, public CPWL_TimerHandler {
|
| virtual void OnDraw(CPDFSDK_PageView* pPageView,
|
| CPDFSDK_Annot* pAnnot,
|
| CFX_RenderDevice* pDevice,
|
| - CFX_Matrix* pUser2Device,
|
| - uint32_t dwFlags);
|
| + CFX_Matrix* pUser2Device);
|
| virtual void OnDrawDeactive(CPDFSDK_PageView* pPageView,
|
| CPDFSDK_Annot* pAnnot,
|
| CFX_RenderDevice* pDevice,
|
| - CFX_Matrix* pUser2Device,
|
| - uint32_t dwFlags);
|
| + CFX_Matrix* pUser2Device);
|
|
|
| virtual void OnCreate(CPDFSDK_Annot* pAnnot);
|
| virtual void OnLoad(CPDFSDK_Annot* pAnnot);
|
| @@ -195,13 +193,11 @@ class CFFL_Button : public CFFL_FormFiller {
|
| void OnDraw(CPDFSDK_PageView* pPageView,
|
| CPDFSDK_Annot* pAnnot,
|
| CFX_RenderDevice* pDevice,
|
| - CFX_Matrix* pUser2Device,
|
| - uint32_t dwFlags) override;
|
| + CFX_Matrix* pUser2Device) override;
|
| void OnDrawDeactive(CPDFSDK_PageView* pPageView,
|
| CPDFSDK_Annot* pAnnot,
|
| CFX_RenderDevice* pDevice,
|
| - CFX_Matrix* pUser2Device,
|
| - uint32_t dwFlags) override;
|
| + CFX_Matrix* pUser2Device) override;
|
|
|
| protected:
|
| FX_BOOL m_bMouseIn;
|
|
|