| Index: fpdfsdk/javascript/Field.cpp
|
| diff --git a/fpdfsdk/javascript/Field.cpp b/fpdfsdk/javascript/Field.cpp
|
| index a788fb203b6583ed49cd2a2ba45150a64198c810..9ecdec693609d4a5e4ca62d796f832c79b4952de 100644
|
| --- a/fpdfsdk/javascript/Field.cpp
|
| +++ b/fpdfsdk/javascript/Field.cpp
|
| @@ -275,7 +275,7 @@ void Field::UpdateFormField(CPDFSDK_Document* pDocument,
|
| static_cast<CPDFSDK_Widget*>(pAnnot)->OnFormat(bFormatted);
|
| if (pAnnot) {
|
| static_cast<CPDFSDK_Widget*>(pAnnot)->ResetAppearance(
|
| - bFormatted ? sValue.c_str() : nullptr, FALSE);
|
| + bFormatted ? &sValue : nullptr, FALSE);
|
| }
|
| }
|
| } else {
|
| @@ -319,10 +319,7 @@ void Field::UpdateFormControl(CPDFSDK_Document* pDocument,
|
| nFieldType == FIELDTYPE_TEXTFIELD) {
|
| FX_BOOL bFormatted = FALSE;
|
| CFX_WideString sValue = pWidget->OnFormat(bFormatted);
|
| - if (bFormatted)
|
| - pWidget->ResetAppearance(sValue.c_str(), FALSE);
|
| - else
|
| - pWidget->ResetAppearance(nullptr, FALSE);
|
| + pWidget->ResetAppearance(bFormatted ? &sValue : nullptr, FALSE);
|
| } else {
|
| pWidget->ResetAppearance(nullptr, FALSE);
|
| }
|
|
|