| Index: xfa/fwl/lightwidget/cfwl_widgetproperties.cpp
|
| diff --git a/xfa/fwl/lightwidget/cfwl_widgetproperties.cpp b/xfa/fwl/lightwidget/cfwl_widgetproperties.cpp
|
| index 9afa1b6959632a12e780a9e7b82009aa4ff791da..31e1dda68779f50c33d45e942586b8839a82b525 100644
|
| --- a/xfa/fwl/lightwidget/cfwl_widgetproperties.cpp
|
| +++ b/xfa/fwl/lightwidget/cfwl_widgetproperties.cpp
|
| @@ -8,6 +8,20 @@
|
|
|
| #include "xfa/fwl/lightwidget/cfwl_widget.h"
|
|
|
| +CFWL_WidgetProperties::CFWL_WidgetProperties()
|
| + : m_dwStyles(FWL_WGTSTYLE_Child),
|
| + m_dwStyleExes(0),
|
| + m_dwStates(0),
|
| + m_pParent(nullptr),
|
| + m_pOwner(nullptr) {
|
| + m_rtWidget.Set(0, 0, 0, 0);
|
| +}
|
| +
|
| +CFWL_WidgetProperties::~CFWL_WidgetProperties() {}
|
| +
|
| +CFWL_WidgetProperties::CFWL_WidgetProperties(
|
| + const CFWL_WidgetProperties& other) = default;
|
| +
|
| CFWL_WidgetImpProperties CFWL_WidgetProperties::MakeWidgetImpProperties(
|
| IFWL_DataProvider* pDataProvider) const {
|
| CFWL_WidgetImpProperties result;
|
|
|