Index: xfa/fwl/core/ifwl_scrollbar.cpp |
diff --git a/xfa/fwl/core/ifwl_scrollbar.cpp b/xfa/fwl/core/ifwl_scrollbar.cpp |
index 9369bd8adadfbeded89b9b8a48e99555d5a7240a..777ca593e940e0f8812bc476fe292871067694a5 100644 |
--- a/xfa/fwl/core/ifwl_scrollbar.cpp |
+++ b/xfa/fwl/core/ifwl_scrollbar.cpp |
@@ -17,10 +17,11 @@ |
#define FWL_SCROLLBAR_Elapse 500 |
#define FWL_SCROLLBAR_MinThumb 5 |
-IFWL_ScrollBar::IFWL_ScrollBar(const IFWL_App* app, |
- const CFWL_WidgetImpProperties& properties, |
- IFWL_Widget* pOuter) |
- : IFWL_Widget(app, properties, pOuter), |
+IFWL_ScrollBar::IFWL_ScrollBar( |
+ const IFWL_App* app, |
+ std::unique_ptr<CFWL_WidgetProperties> properties, |
+ IFWL_Widget* pOuter) |
+ : IFWL_Widget(app, std::move(properties), pOuter), |
m_pTimerInfo(nullptr), |
m_fRangeMin(0), |
m_fRangeMax(-1), |