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/fxfa/app/xfa_ffcheckbutton.cpp | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) (limited to 'xfa/fxfa/app/xfa_ffcheckbutton.cpp') diff --git a/xfa/fxfa/app/xfa_ffcheckbutton.cpp b/xfa/fxfa/app/xfa_ffcheckbutton.cpp index 7756506975..829900fa22 100644 --- a/xfa/fxfa/app/xfa_ffcheckbutton.cpp +++ b/xfa/fxfa/app/xfa_ffcheckbutton.cpp @@ -28,7 +28,7 @@ CXFA_FFCheckButton::~CXFA_FFCheckButton() {} FX_BOOL CXFA_FFCheckButton::LoadWidget() { CFWL_CheckBox* pCheckBox = new CFWL_CheckBox(GetFWLApp()); - pCheckBox->Initialize(nullptr); + pCheckBox->Initialize(); m_pNormalWidget = pCheckBox; m_pNormalWidget->SetLayoutItem(this); -- cgit v1.2.3