diff options
Diffstat (limited to 'core/fpdfdoc/cpdf_dest.cpp')
-rw-r--r-- | core/fpdfdoc/cpdf_dest.cpp | 4 |
1 files changed, 2 insertions, 2 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() {} |