| Index: xfa/src/fwl/src/basewidget/fwl_checkboximp.cpp
|
| diff --git a/xfa/src/fwl/src/basewidget/fwl_checkboximp.cpp b/xfa/src/fwl/src/basewidget/fwl_checkboximp.cpp
|
| index b18df4e13f9a0ce4ebef7967b9bc3b69f900200c..01fbb732cbf899f1b92500b3a359dec41f6e3fcf 100644
|
| --- a/xfa/src/fwl/src/basewidget/fwl_checkboximp.cpp
|
| +++ b/xfa/src/fwl/src/basewidget/fwl_checkboximp.cpp
|
| @@ -16,12 +16,6 @@ IFWL_CheckBox* IFWL_CheckBox::Create() {
|
| }
|
| IFWL_CheckBox::IFWL_CheckBox() {
|
| }
|
| -FWL_ERR IFWL_CheckBox::Initialize(IFWL_Widget* pOuter) {
|
| - CFWL_CheckBoxImp* pCheckBoxImpl = new CFWL_CheckBoxImp(pOuter);
|
| - SetImpl(pCheckBoxImpl);
|
| - pCheckBoxImpl->SetInterface(this);
|
| - return pCheckBoxImpl->Initialize();
|
| -}
|
| FWL_ERR IFWL_CheckBox::Initialize(const CFWL_WidgetImpProperties& properties,
|
| IFWL_Widget* pOuter) {
|
| CFWL_CheckBoxImp* pCheckBoxImpl = new CFWL_CheckBoxImp(properties, pOuter);
|
| @@ -40,12 +34,6 @@ IFWL_RadioButton* IFWL_RadioButton::Create() {
|
| }
|
| IFWL_RadioButton::IFWL_RadioButton() {
|
| }
|
| -FWL_ERR IFWL_RadioButton::Initialize(IFWL_Widget* pOuter) {
|
| - CFWL_CheckBoxImp* pCheckBoxImpl = new CFWL_CheckBoxImp(pOuter);
|
| - SetImpl(pCheckBoxImpl);
|
| - pCheckBoxImpl->SetInterface(this);
|
| - return pCheckBoxImpl->Initialize();
|
| -}
|
| FWL_ERR IFWL_RadioButton::Initialize(const CFWL_WidgetImpProperties& properties,
|
| IFWL_Widget* pOuter) {
|
| CFWL_CheckBoxImp* pCheckBoxImpl = new CFWL_CheckBoxImp(properties, pOuter);
|
|
|