summaryrefslogtreecommitdiff
path: root/xfa/fwl/core/cfwl_themepart.h
diff options
context:
space:
mode:
Diffstat (limited to 'xfa/fwl/core/cfwl_themepart.h')
-rw-r--r--xfa/fwl/core/cfwl_themepart.h6
1 files changed, 4 insertions, 2 deletions
diff --git a/xfa/fwl/core/cfwl_themepart.h b/xfa/fwl/core/cfwl_themepart.h
index df75a94f85..5bdf1530a5 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;
};