diff options
author | dsinclair <dsinclair@chromium.org> | 2016-10-31 09:44:45 -0700 |
---|---|---|
committer | Commit bot <commit-bot@chromium.org> | 2016-10-31 09:44:45 -0700 |
commit | 96c7b33510c5d48ef5707326de88b35dcd2e4b45 (patch) | |
tree | 197df79ed8b51d3b7778faa570f20d82e5bf8fda /xfa/fxfa/app/xfa_ffbarcode.cpp | |
parent | fea997eb29e08a85038b5fc3b14bcaa35da369e4 (diff) | |
download | pdfium-96c7b33510c5d48ef5707326de88b35dcd2e4b45.tar.xz |
Remove unused parameter to CFWL_* Initialize methods.
This parameter is always nullptr, removed.
Review-Url: https://codereview.chromium.org/2463073002
Diffstat (limited to 'xfa/fxfa/app/xfa_ffbarcode.cpp')
-rw-r--r-- | xfa/fxfa/app/xfa_ffbarcode.cpp | 2 |
1 files changed, 1 insertions, 1 deletions
diff --git a/xfa/fxfa/app/xfa_ffbarcode.cpp b/xfa/fxfa/app/xfa_ffbarcode.cpp index e684d9c8b9..efe9912f02 100644 --- a/xfa/fxfa/app/xfa_ffbarcode.cpp +++ b/xfa/fxfa/app/xfa_ffbarcode.cpp @@ -124,7 +124,7 @@ CXFA_FFBarcode::~CXFA_FFBarcode() {} FX_BOOL CXFA_FFBarcode::LoadWidget() { CFWL_Barcode* pFWLBarcode = new CFWL_Barcode(GetFWLApp()); - pFWLBarcode->Initialize(nullptr); + pFWLBarcode->Initialize(); m_pNormalWidget = pFWLBarcode; m_pNormalWidget->SetLayoutItem(this); |