From b7c4a0243e82f6c4ff91cd90b5bae336100c3c70 Mon Sep 17 00:00:00 2001 From: Tom Sepez Date: Fri, 26 Oct 2018 23:56:27 +0000 Subject: Pass CreateParams to CPWL_Wnd constructor. The previous reshuffling means we always have the create params earlier, so pass them in at create time. Clean up two forward declarations that were not needed as noticed in the process. Change-Id: I5d3861f3c1e3508e0d25950e919859244fac5f8b Reviewed-on: https://pdfium-review.googlesource.com/c/44710 Reviewed-by: Tom Sepez Reviewed-by: Lei Zhang Commit-Queue: Tom Sepez --- fpdfsdk/pwl/cpwl_wnd.h | 4 ++-- 1 file changed, 2 insertions(+), 2 deletions(-) (limited to 'fpdfsdk/pwl/cpwl_wnd.h') diff --git a/fpdfsdk/pwl/cpwl_wnd.h b/fpdfsdk/pwl/cpwl_wnd.h index 51e34a769d..64fe1310e2 100644 --- a/fpdfsdk/pwl/cpwl_wnd.h +++ b/fpdfsdk/pwl/cpwl_wnd.h @@ -132,7 +132,7 @@ class CPWL_Wnd : public CPWL_TimerHandler, public Observable { CFX_Matrix mtChild; // ignore }; - explicit CPWL_Wnd(std::unique_ptr pAttachedData); + CPWL_Wnd(const CreateParams& cp, std::unique_ptr pAttachedData); ~CPWL_Wnd() override; // Returns |true| iff this instance is still allocated. @@ -178,7 +178,7 @@ class CPWL_Wnd : public CPWL_TimerHandler, public Observable { void AddChild(std::unique_ptr pWnd); void RemoveChild(CPWL_Wnd* pWnd); - void Realize(const CreateParams& cp); + void Realize(); void Destroy(); bool Move(const CFX_FloatRect& rcNew, bool bReset, bool bRefresh); -- cgit v1.2.3