Index: xfa/fwl/core/ifwl_checkbox.cpp |
diff --git a/xfa/fwl/core/ifwl_checkbox.cpp b/xfa/fwl/core/ifwl_checkbox.cpp |
index d822d3e8203fcd0a4ddab8b5e71c189f68ec4ad4..20298c73088145656674a2957436bbaf25abb9da 100644 |
--- a/xfa/fwl/core/ifwl_checkbox.cpp |
+++ b/xfa/fwl/core/ifwl_checkbox.cpp |
@@ -23,15 +23,8 @@ const int kCaptionMargin = 5; |
} // namespace |
-// static |
-IFWL_CheckBox* IFWL_CheckBox::Create(const CFWL_WidgetImpProperties& properties, |
- IFWL_Widget* pOuter) { |
- return new IFWL_CheckBox(properties, pOuter); |
-} |
- |
-IFWL_CheckBox::IFWL_CheckBox(const CFWL_WidgetImpProperties& properties, |
- IFWL_Widget* pOuter) |
- : IFWL_Widget(properties, pOuter), |
+IFWL_CheckBox::IFWL_CheckBox(const CFWL_WidgetImpProperties& properties) |
+ : IFWL_Widget(properties, nullptr), |
m_dwTTOStyles(FDE_TTOSTYLE_SingleLine), |
m_iTTOAlign(FDE_TTOALIGNMENT_Center), |
m_bBtnDown(FALSE) { |