Index: xfa/fwl/core/ifwl_checkbox.cpp |
diff --git a/xfa/fwl/core/ifwl_checkbox.cpp b/xfa/fwl/core/ifwl_checkbox.cpp |
index f03b86471728e474105ab7af9d099e8370ba2766..a8f4936b29ad45065a028db986fbf486c6e730b1 100644 |
--- a/xfa/fwl/core/ifwl_checkbox.cpp |
+++ b/xfa/fwl/core/ifwl_checkbox.cpp |
@@ -26,8 +26,8 @@ const int kCaptionMargin = 5; |
} // namespace |
IFWL_CheckBox::IFWL_CheckBox(const IFWL_App* app, |
- const CFWL_WidgetImpProperties& properties) |
- : IFWL_Widget(app, properties, nullptr), |
+ std::unique_ptr<CFWL_WidgetProperties> properties) |
+ : IFWL_Widget(app, std::move(properties), nullptr), |
m_dwTTOStyles(FDE_TTOSTYLE_SingleLine), |
m_iTTOAlign(FDE_TTOALIGNMENT_Center), |
m_bBtnDown(false) { |