| Index: fpdfsdk/include/formfiller/FFL_IFormFiller.h
 | 
| diff --git a/fpdfsdk/include/formfiller/FFL_IFormFiller.h b/fpdfsdk/include/formfiller/FFL_IFormFiller.h
 | 
| index 93e7505f9c75ae36b802663d46c2b4c6e33d3eb7..cea61bf20e153fce5b83e0e02f38bb8ee3bdf4ce 100644
 | 
| --- a/fpdfsdk/include/formfiller/FFL_IFormFiller.h
 | 
| +++ b/fpdfsdk/include/formfiller/FFL_IFormFiller.h
 | 
| @@ -26,7 +26,7 @@ class CFFL_IFormFiller : public IPWL_Filler_Notify {
 | 
|  
 | 
|    virtual FX_BOOL Annot_HitTest(CPDFSDK_PageView* pPageView,
 | 
|                                  CPDFSDK_Annot* pAnnot,
 | 
| -                                CPDF_Point point);
 | 
| +                                CFX_FloatPoint point);
 | 
|    virtual FX_RECT GetViewBBox(CPDFSDK_PageView* pPageView,
 | 
|                                CPDFSDK_Annot* pAnnot);
 | 
|    virtual void OnDraw(CPDFSDK_PageView* pPageView,
 | 
| @@ -49,32 +49,32 @@ class CFFL_IFormFiller : public IPWL_Filler_Notify {
 | 
|    virtual FX_BOOL OnLButtonDown(CPDFSDK_PageView* pPageView,
 | 
|                                  CPDFSDK_Annot* pAnnot,
 | 
|                                  FX_UINT nFlags,
 | 
| -                                const CPDF_Point& point);
 | 
| +                                const CFX_FloatPoint& point);
 | 
|    virtual FX_BOOL OnLButtonUp(CPDFSDK_PageView* pPageView,
 | 
|                                CPDFSDK_Annot* pAnnot,
 | 
|                                FX_UINT nFlags,
 | 
| -                              const CPDF_Point& point);
 | 
| +                              const CFX_FloatPoint& point);
 | 
|    virtual FX_BOOL OnLButtonDblClk(CPDFSDK_PageView* pPageView,
 | 
|                                    CPDFSDK_Annot* pAnnot,
 | 
|                                    FX_UINT nFlags,
 | 
| -                                  const CPDF_Point& point);
 | 
| +                                  const CFX_FloatPoint& point);
 | 
|    virtual FX_BOOL OnMouseMove(CPDFSDK_PageView* pPageView,
 | 
|                                CPDFSDK_Annot* pAnnot,
 | 
|                                FX_UINT nFlags,
 | 
| -                              const CPDF_Point& point);
 | 
| +                              const CFX_FloatPoint& point);
 | 
|    virtual FX_BOOL OnMouseWheel(CPDFSDK_PageView* pPageView,
 | 
|                                 CPDFSDK_Annot* pAnnot,
 | 
|                                 FX_UINT nFlags,
 | 
|                                 short zDelta,
 | 
| -                               const CPDF_Point& point);
 | 
| +                               const CFX_FloatPoint& point);
 | 
|    virtual FX_BOOL OnRButtonDown(CPDFSDK_PageView* pPageView,
 | 
|                                  CPDFSDK_Annot* pAnnot,
 | 
|                                  FX_UINT nFlags,
 | 
| -                                const CPDF_Point& point);
 | 
| +                                const CFX_FloatPoint& point);
 | 
|    virtual FX_BOOL OnRButtonUp(CPDFSDK_PageView* pPageView,
 | 
|                                CPDFSDK_Annot* pAnnot,
 | 
|                                FX_UINT nFlags,
 | 
| -                              const CPDF_Point& point);
 | 
| +                              const CFX_FloatPoint& point);
 | 
|  
 | 
|    virtual FX_BOOL OnKeyDown(CPDFSDK_Annot* pAnnot,
 | 
|                              FX_UINT nKeyCode,
 | 
| 
 |