diff options
author | dsinclair <dsinclair@chromium.org> | 2016-10-19 07:59:25 -0700 |
---|---|---|
committer | Commit bot <commit-bot@chromium.org> | 2016-10-19 07:59:25 -0700 |
commit | 0ca71ec811e33818d2ccba3221fdb660811b813c (patch) | |
tree | d94dce266dd67bbe94f5c73960734e7b5b691dd1 /xfa/fxfa/app/xfa_ffbarcode.cpp | |
parent | c273e8f5006aa7d91d37a5da021dbbabb8721e5b (diff) | |
download | pdfium-0ca71ec811e33818d2ccba3221fdb660811b813c.tar.xz |
Remove FWL Create methods, use new instead
Review-Url: https://chromiumcodereview.appspot.com/2422303003
Diffstat (limited to 'xfa/fxfa/app/xfa_ffbarcode.cpp')
-rw-r--r-- | xfa/fxfa/app/xfa_ffbarcode.cpp | 7 |
1 files changed, 3 insertions, 4 deletions
diff --git a/xfa/fxfa/app/xfa_ffbarcode.cpp b/xfa/fxfa/app/xfa_ffbarcode.cpp index 4bb3ba0a4d..42564e92f7 100644 --- a/xfa/fxfa/app/xfa_ffbarcode.cpp +++ b/xfa/fxfa/app/xfa_ffbarcode.cpp @@ -121,10 +121,9 @@ CXFA_FFBarcode::CXFA_FFBarcode(CXFA_FFPageView* pPageView, : CXFA_FFTextEdit(pPageView, pDataAcc) {} CXFA_FFBarcode::~CXFA_FFBarcode() {} FX_BOOL CXFA_FFBarcode::LoadWidget() { - CFWL_Barcode* pFWLBarcode = CFWL_Barcode::Create(); - if (pFWLBarcode) { - pFWLBarcode->Initialize(); - } + CFWL_Barcode* pFWLBarcode = new CFWL_Barcode; + pFWLBarcode->Initialize(); + m_pNormalWidget = pFWLBarcode; m_pNormalWidget->SetLayoutItem(this); IFWL_Widget* pWidget = m_pNormalWidget->GetWidget(); |