| Index: xfa/src/fwl/src/lightwidget/edit.cpp
|
| diff --git a/xfa/src/fwl/src/lightwidget/edit.cpp b/xfa/src/fwl/src/lightwidget/edit.cpp
|
| index a8a16850bf6e28ebf12299b306f15e6ff8bb2ba3..d16c57b964a2def950895bd0b6a3a379a610eeec 100644
|
| --- a/xfa/src/fwl/src/lightwidget/edit.cpp
|
| +++ b/xfa/src/fwl/src/lightwidget/edit.cpp
|
| @@ -4,7 +4,10 @@
|
|
|
| // Original code copyright 2014 Foxit Software Inc. http://www.foxitsoftware.com
|
|
|
| +#include <memory>
|
| +
|
| #include "../../../foxitlib.h"
|
| +
|
| CFWL_Edit* CFWL_Edit::Create() {
|
| return new CFWL_Edit;
|
| }
|
| @@ -14,7 +17,7 @@ FWL_ERR CFWL_Edit::Initialize(const CFWL_WidgetProperties* pProperties) {
|
| if (pProperties) {
|
| *m_pProperties = *pProperties;
|
| }
|
| - nonstd::unique_ptr<IFWL_Edit> pEdit(IFWL_Edit::Create(
|
| + std::unique_ptr<IFWL_Edit> pEdit(IFWL_Edit::Create(
|
| m_pProperties->MakeWidgetImpProperties(nullptr), nullptr));
|
| FWL_ERR ret = pEdit->Initialize();
|
| if (ret != FWL_ERR_Succeeded) {
|
|
|