| Index: xfa/fwl/core/ifwl_barcode.cpp
|
| diff --git a/xfa/fwl/core/ifwl_barcode.cpp b/xfa/fwl/core/ifwl_barcode.cpp
|
| index 9495dd96b533d55d9f5c0a39fd0c03f35af557d2..3fb430d71b82d156de3ac5814c093e6f8f1bc7fd 100644
|
| --- a/xfa/fwl/core/ifwl_barcode.cpp
|
| +++ b/xfa/fwl/core/ifwl_barcode.cpp
|
| @@ -14,9 +14,10 @@
|
| #include "xfa/fwl/core/ifwl_themeprovider.h"
|
|
|
| IFWL_Barcode::IFWL_Barcode(const IFWL_App* app,
|
| - const CFWL_WidgetImpProperties& properties)
|
| - : IFWL_Edit(app, properties, nullptr), m_dwStatus(0), m_type(BC_UNKNOWN) {
|
| -}
|
| + std::unique_ptr<CFWL_WidgetProperties> properties)
|
| + : IFWL_Edit(app, std::move(properties), nullptr),
|
| + m_dwStatus(0),
|
| + m_type(BC_UNKNOWN) {}
|
|
|
| IFWL_Barcode::~IFWL_Barcode() {}
|
|
|
|
|