| Index: xfa/fwl/core/cfwl_themepart.h
|
| diff --git a/xfa/fwl/core/cfwl_themepart.h b/xfa/fwl/core/cfwl_themepart.h
|
| index df75a94f85c9586f31662c64f6a95b39974df87a..5bdf1530a51f0d63a36b3d3414fae1a9ee241281 100644
|
| --- a/xfa/fwl/core/cfwl_themepart.h
|
| +++ b/xfa/fwl/core/cfwl_themepart.h
|
| @@ -85,7 +85,8 @@ class CFWL_ThemePart {
|
| : m_pWidget(nullptr),
|
| m_iPart(CFWL_Part::None),
|
| m_dwStates(CFWL_PartState_Normal),
|
| - m_dwData(0),
|
| + m_bMaximize(false),
|
| + m_bStaticBackground(false),
|
| m_pData(nullptr) {
|
| m_rtPart.Reset();
|
| m_matrix.SetIdentity();
|
| @@ -96,7 +97,8 @@ class CFWL_ThemePart {
|
| IFWL_Widget* m_pWidget;
|
| CFWL_Part m_iPart;
|
| uint32_t m_dwStates;
|
| - uint32_t m_dwData;
|
| + bool m_bMaximize;
|
| + bool m_bStaticBackground;
|
| void* m_pData;
|
| };
|
|
|
|
|