diff options
author | Tom Sepez <tsepez@chromium.org> | 2018-04-25 17:45:01 +0000 |
---|---|---|
committer | Chromium commit bot <commit-bot@chromium.org> | 2018-04-25 17:45:01 +0000 |
commit | f8ffc048195bd96ee58a1aeefcae2ac3f8950ed8 (patch) | |
tree | ebebd69b4d9f73d7b9b077fbfa7a881fbae06440 /core | |
parent | 7b01255ef62f8df5cdd3053fd42c5c501274186d (diff) | |
download | pdfium-f8ffc048195bd96ee58a1aeefcae2ac3f8950ed8.tar.xz |
Fix slight type inconsistencies discovered with strict FPDF API types.
Moved to an independent CL from
https://pdfium-review.googlesource.com/c/pdfium/+/31296
Change-Id: Ia76e5609dc09bb7b483e092b10d9f8522e2dc175
Reviewed-on: https://pdfium-review.googlesource.com/31297
Reviewed-by: dsinclair <dsinclair@chromium.org>
Commit-Queue: Tom Sepez <tsepez@chromium.org>
Diffstat (limited to 'core')
-rw-r--r-- | core/fpdfdoc/cpdf_dest.cpp | 4 | ||||
-rw-r--r-- | core/fpdfdoc/cpdf_dest.h | 8 |
2 files changed, 6 insertions, 6 deletions
diff --git a/core/fpdfdoc/cpdf_dest.cpp b/core/fpdfdoc/cpdf_dest.cpp index 015cdcbc09..e787dcdd22 100644 --- a/core/fpdfdoc/cpdf_dest.cpp +++ b/core/fpdfdoc/cpdf_dest.cpp @@ -32,9 +32,9 @@ static_assert(FX_ArraySize(g_sZoomModes) == CPDF_Dest::CPDF_Dest() {} -CPDF_Dest::CPDF_Dest(const CPDF_Dest& pObj) = default; +CPDF_Dest::CPDF_Dest(const CPDF_Dest& that) = default; -CPDF_Dest::CPDF_Dest(CPDF_Object* pObj) : m_pObj(pObj) {} +CPDF_Dest::CPDF_Dest(CPDF_Array* pObj) : m_pObj(pObj) {} CPDF_Dest::~CPDF_Dest() {} diff --git a/core/fpdfdoc/cpdf_dest.h b/core/fpdfdoc/cpdf_dest.h index 709a2470c5..9f9f08723f 100644 --- a/core/fpdfdoc/cpdf_dest.h +++ b/core/fpdfdoc/cpdf_dest.h @@ -12,16 +12,16 @@ #include "core/fxcrt/unowned_ptr.h" class CPDF_Document; -class CPDF_Object; +class CPDF_Array; class CPDF_Dest { public: CPDF_Dest(); CPDF_Dest(const CPDF_Dest& that); - explicit CPDF_Dest(CPDF_Object* pObj); + explicit CPDF_Dest(CPDF_Array* pObj); ~CPDF_Dest(); - CPDF_Object* GetObject() const { return m_pObj.Get(); } + CPDF_Array* GetObject() const { return m_pObj.Get(); } ByteString GetRemoteName() const; // Deprecated. Use GetDestPageIndex instead. @@ -46,7 +46,7 @@ class CPDF_Dest { float* pZoom) const; private: - UnownedPtr<CPDF_Object> m_pObj; + UnownedPtr<CPDF_Array> m_pObj; }; #endif // CORE_FPDFDOC_CPDF_DEST_H_ |