From 96c7b33510c5d48ef5707326de88b35dcd2e4b45 Mon Sep 17 00:00:00 2001 From: dsinclair Date: Mon, 31 Oct 2016 09:44:45 -0700 Subject: Remove unused parameter to CFWL_* Initialize methods. This parameter is always nullptr, removed. Review-Url: https://codereview.chromium.org/2463073002 --- xfa/fwl/core/cfwl_widget.cpp | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) (limited to 'xfa/fwl/core/cfwl_widget.cpp') diff --git a/xfa/fwl/core/cfwl_widget.cpp b/xfa/fwl/core/cfwl_widget.cpp index d7903ea8a8..9aeb127e9e 100644 --- a/xfa/fwl/core/cfwl_widget.cpp +++ b/xfa/fwl/core/cfwl_widget.cpp @@ -31,7 +31,7 @@ CFWL_Widget::~CFWL_Widget() { m_pIface->Finalize(); } -void CFWL_Widget::Initialize(const CFWL_WidgetProperties* pProperties) { +void CFWL_Widget::Initialize() { ASSERT(m_pIface); m_pIface->SetAssociateWidget(this); } -- cgit v1.2.3