diff options
author | dsinclair <dsinclair@chromium.org> | 2016-10-20 07:07:48 -0700 |
---|---|---|
committer | Commit bot <commit-bot@chromium.org> | 2016-10-20 07:07:48 -0700 |
commit | 2a38a02b0492de0576c2e5b5e7d550f969367f9d (patch) | |
tree | cc056c8a004d14323d5438477d1fa8cfe0e2fcc5 /xfa/fwl/core/ifwl_combobox.cpp | |
parent | fb5055947efd78e0e7f8a2bfd5b754c63dbb6076 (diff) | |
download | pdfium-2a38a02b0492de0576c2e5b5e7d550f969367f9d.tar.xz |
Remove IFWL_*::Create methods, use new
The create methods just proxied to the constructor. Remove Creates and call
new directly where needed.
Review-Url: https://chromiumcodereview.appspot.com/2433133002
Diffstat (limited to 'xfa/fwl/core/ifwl_combobox.cpp')
-rw-r--r-- | xfa/fwl/core/ifwl_combobox.cpp | 24 |
1 files changed, 9 insertions, 15 deletions
diff --git a/xfa/fwl/core/ifwl_combobox.cpp b/xfa/fwl/core/ifwl_combobox.cpp index 6a4c13f4a6..9d3e58cec6 100644 --- a/xfa/fwl/core/ifwl_combobox.cpp +++ b/xfa/fwl/core/ifwl_combobox.cpp @@ -20,15 +20,8 @@ #include "xfa/fwl/core/ifwl_formproxy.h" #include "xfa/fwl/core/ifwl_themeprovider.h" -// static -IFWL_ComboBox* IFWL_ComboBox::Create( - const CFWL_WidgetImpProperties& properties) { - return new IFWL_ComboBox(properties, nullptr); -} - -IFWL_ComboBox::IFWL_ComboBox(const CFWL_WidgetImpProperties& properties, - IFWL_Widget* pOuter) - : IFWL_Widget(properties, pOuter), +IFWL_ComboBox::IFWL_ComboBox(const CFWL_WidgetImpProperties& properties) + : IFWL_Widget(properties, nullptr), m_pForm(nullptr), m_bLButtonDown(FALSE), m_iCurSel(-1), @@ -66,11 +59,11 @@ FWL_Error IFWL_ComboBox::Initialize() { prop.m_dwStyleExes |= FWL_STYLEEXT_LTB_Icon; prop.m_pDataProvider = m_pProperties->m_pDataProvider; - m_pListBox.reset(IFWL_ComboList::Create(prop, this)); + m_pListBox.reset(new IFWL_ComboList(prop, this)); m_pListBox->Initialize(); if ((m_pProperties->m_dwStyleExes & FWL_STYLEEXT_CMB_DropDown) && !m_pEdit) { CFWL_WidgetImpProperties prop2; - m_pEdit.reset(IFWL_ComboEdit::Create(prop2, this)); + m_pEdit.reset(new IFWL_ComboEdit(prop2, this)); m_pEdit->Initialize(); m_pEdit->SetOuter(this); } @@ -125,7 +118,7 @@ FWL_Error IFWL_ComboBox::ModifyStylesEx(uint32_t dwStylesExAdded, bool bRemoveDropDown = !!(dwStylesExRemoved & FWL_STYLEEXT_CMB_DropDown); if (bAddDropDown && !m_pEdit) { CFWL_WidgetImpProperties prop; - m_pEdit.reset(IFWL_ComboEdit::Create(prop, nullptr)); + m_pEdit.reset(new IFWL_ComboEdit(prop, nullptr)); m_pEdit->Initialize(); m_pEdit->SetOuter(this); m_pEdit->SetParent(this); @@ -723,7 +716,8 @@ void IFWL_ComboBox::InitProxyForm() { propForm.m_pOwner = this; propForm.m_dwStyles = FWL_WGTSTYLE_Popup; propForm.m_dwStates = FWL_WGTSTATE_Invisible; - m_pForm = IFWL_FormProxy::Create(propForm, m_pListBox.get()); + + m_pForm = new IFWL_FormProxy(propForm, m_pListBox.get()); m_pForm->Initialize(); m_pListBox->SetParent(m_pForm); m_pListProxyDelegate = new CFWL_ComboProxyImpDelegate(m_pForm, this); @@ -750,7 +744,7 @@ void IFWL_ComboBox::DisForm_InitComboList() { prop.m_dwStates = FWL_WGTSTATE_Invisible; prop.m_pDataProvider = m_pProperties->m_pDataProvider; prop.m_pThemeProvider = m_pProperties->m_pThemeProvider; - m_pListBox.reset(IFWL_ComboList::Create(prop, this)); + m_pListBox.reset(new IFWL_ComboList(prop, this)); m_pListBox->Initialize(); } @@ -761,7 +755,7 @@ void IFWL_ComboBox::DisForm_InitComboEdit() { CFWL_WidgetImpProperties prop; prop.m_pParent = this; prop.m_pThemeProvider = m_pProperties->m_pThemeProvider; - m_pEdit.reset(IFWL_ComboEdit::Create(prop, this)); + m_pEdit.reset(new IFWL_ComboEdit(prop, this)); m_pEdit->Initialize(); m_pEdit->SetOuter(this); } |