summaryrefslogtreecommitdiff
path: root/xfa/src/fwl/src/core/include/fwl_contentimp.h
diff options
context:
space:
mode:
Diffstat (limited to 'xfa/src/fwl/src/core/include/fwl_contentimp.h')
-rw-r--r--xfa/src/fwl/src/core/include/fwl_contentimp.h7
1 files changed, 4 insertions, 3 deletions
diff --git a/xfa/src/fwl/src/core/include/fwl_contentimp.h b/xfa/src/fwl/src/core/include/fwl_contentimp.h
index 0bfc77cd58..dc7ff7b681 100644
--- a/xfa/src/fwl/src/core/include/fwl_contentimp.h
+++ b/xfa/src/fwl/src/core/include/fwl_contentimp.h
@@ -11,8 +11,9 @@ class IFWL_Widget;
class CFWL_ContentImp;
class CFWL_ContentImp : public CFWL_WidgetImp {
public:
- CFWL_ContentImp();
- CFWL_ContentImp(const CFWL_WidgetImpProperties& properties);
+ CFWL_ContentImp(const CFWL_WidgetImpProperties& properties,
+ IFWL_Widget* pOuter);
+
virtual ~CFWL_ContentImp();
virtual FWL_ERR InsertWidget(IFWL_Widget* pChild, int32_t nIndex = -1);
virtual FWL_ERR RemoveWidget(IFWL_Widget* pWidget);
@@ -25,7 +26,7 @@ class CFWL_ContentImp : public CFWL_WidgetImp {
protected:
FX_FLOAT m_fWidthMin;
FX_FLOAT m_fWidthMax;
- FX_FLOAT m_fHeightMax;
FX_FLOAT m_fHeightMin;
+ FX_FLOAT m_fHeightMax;
};
#endif