| Index: fpdfsdk/include/fsdk_mgr.h
|
| diff --git a/fpdfsdk/include/fsdk_mgr.h b/fpdfsdk/include/fsdk_mgr.h
|
| index a4385be3180fea310873c5fe80fa7ed7b510d420..409b49f6a94eea8500ad4a83e4b40e585be56d59 100644
|
| --- a/fpdfsdk/include/fsdk_mgr.h
|
| +++ b/fpdfsdk/include/fsdk_mgr.h
|
| @@ -295,7 +295,7 @@ class CPDFSDK_PageView final {
|
| CPDFSDK_PageView(CPDFSDK_Document* pSDKDoc, UnderlyingPageType* page);
|
| ~CPDFSDK_PageView();
|
| void PageView_OnDraw(CFX_RenderDevice* pDevice,
|
| - CPDF_Matrix* pUser2Device,
|
| + CFX_Matrix* pUser2Device,
|
| CPDF_RenderOptions* pOptions);
|
| const CPDF_Annot* GetPDFAnnotAtPoint(FX_FLOAT pageX, FX_FLOAT pageY);
|
| CPDFSDK_Annot* GetFXAnnotAtPoint(FX_FLOAT pageX, FX_FLOAT pageY);
|
| @@ -333,7 +333,7 @@ class CPDFSDK_PageView final {
|
| const CPDF_Point& point,
|
| int nFlag);
|
| bool IsValidAnnot(const CPDF_Annot* p) const;
|
| - void GetCurrentMatrix(CPDF_Matrix& matrix) { matrix = m_curMatrix; }
|
| + void GetCurrentMatrix(CFX_Matrix& matrix) { matrix = m_curMatrix; }
|
| void UpdateRects(CFX_RectArray& rects);
|
| void UpdateView(CPDFSDK_Annot* pAnnot);
|
| const std::vector<CPDFSDK_Annot*>& GetAnnotList() const {
|
| @@ -352,7 +352,7 @@ class CPDFSDK_PageView final {
|
| void PageView_OnHighlightFormFields(CFX_RenderDevice* pDevice,
|
| CPDFSDK_Widget* pWidget);
|
|
|
| - CPDF_Matrix m_curMatrix;
|
| + CFX_Matrix m_curMatrix;
|
| UnderlyingPageType* m_page;
|
| nonstd::unique_ptr<CPDF_AnnotList> m_pAnnotList;
|
| std::vector<CPDFSDK_Annot*> m_fxAnnotArray;
|
|
|