| Index: xfa/fwl/core/ifwl_tooltip.cpp
|
| diff --git a/xfa/fwl/core/ifwl_tooltip.cpp b/xfa/fwl/core/ifwl_tooltip.cpp
|
| index 2d518c5f83814a9bbea49f84798f9ef9dfa8b6f8..99d3b98e951b683af94380733d87356a451ec984 100644
|
| --- a/xfa/fwl/core/ifwl_tooltip.cpp
|
| +++ b/xfa/fwl/core/ifwl_tooltip.cpp
|
| @@ -17,9 +17,9 @@
|
| #include "xfa/fwl/theme/cfwl_widgettp.h"
|
|
|
| IFWL_ToolTip::IFWL_ToolTip(const IFWL_App* app,
|
| - const CFWL_WidgetImpProperties& properties,
|
| + std::unique_ptr<CFWL_WidgetProperties> properties,
|
| IFWL_Widget* pOuter)
|
| - : IFWL_Form(app, properties, pOuter),
|
| + : IFWL_Form(app, std::move(properties), pOuter),
|
| m_bBtnDown(false),
|
| m_dwTTOStyles(FDE_TTOSTYLE_SingleLine),
|
| m_iTTOAlign(FDE_TTOALIGNMENT_Center),
|
|
|