Index: xfa/fwl/core/ifwl_monthcalendar.cpp |
diff --git a/xfa/fwl/core/ifwl_monthcalendar.cpp b/xfa/fwl/core/ifwl_monthcalendar.cpp |
index 4190dbdefde7ade5e0a848ae32945f1e8f16c582..28d529787d326ab734a6162002bf9f6f22a8224a 100644 |
--- a/xfa/fwl/core/ifwl_monthcalendar.cpp |
+++ b/xfa/fwl/core/ifwl_monthcalendar.cpp |
@@ -120,9 +120,9 @@ CFX_WideString* GetCapacityForMonth(IFWL_ThemeProvider* pTheme, |
IFWL_MonthCalendar::IFWL_MonthCalendar( |
const IFWL_App* app, |
- const CFWL_WidgetImpProperties& properties, |
+ std::unique_ptr<CFWL_WidgetProperties> properties, |
IFWL_Widget* pOuter) |
- : IFWL_Widget(app, properties, pOuter), |
+ : IFWL_Widget(app, std::move(properties), pOuter), |
m_bInit(false), |
m_pDateTime(new CFX_DateTime), |
m_iCurYear(2011), |