| Index: fpdfsdk/src/fsdk_baseform.cpp
|
| diff --git a/fpdfsdk/src/fsdk_baseform.cpp b/fpdfsdk/src/fsdk_baseform.cpp
|
| index c301a8760a2a77fbaa2911a878ec082f6ea8d3c8..5dbd4f721b4244e0056da1926071511b52e152dd 100644
|
| --- a/fpdfsdk/src/fsdk_baseform.cpp
|
| +++ b/fpdfsdk/src/fsdk_baseform.cpp
|
| @@ -1711,9 +1711,9 @@ void CPDFSDK_Widget::ResetAppearance_ComboBox(FX_LPCWSTR sValue)
|
| FX_INT32 nCurSel = pField->GetSelectedIndex(0);
|
|
|
| if (nCurSel < 0)
|
| - pEdit->SetText((FX_LPCWSTR)pField->GetValue());
|
| + pEdit->SetText(pField->GetValue().c_str());
|
| else
|
| - pEdit->SetText((FX_LPCWSTR)pField->GetOptionLabel(nCurSel));
|
| + pEdit->SetText(pField->GetOptionLabel(nCurSel).c_str());
|
| }
|
|
|
| CPDF_Rect rcContent = pEdit->GetContentRect();
|
| @@ -1798,7 +1798,7 @@ void CPDFSDK_Widget::ResetAppearance_ListBox()
|
| }
|
| }
|
|
|
| - pEdit->SetText((FX_LPCWSTR)pField->GetOptionLabel(i));
|
| + pEdit->SetText(pField->GetOptionLabel(i).c_str());
|
|
|
| CPDF_Rect rcContent = pEdit->GetContentRect();
|
| FX_FLOAT fItemHeight = rcContent.Height();
|
| @@ -1924,7 +1924,7 @@ void CPDFSDK_Widget::ResetAppearance_TextField(FX_LPCWSTR sValue)
|
| if (sValue)
|
| pEdit->SetText(sValue);
|
| else
|
| - pEdit->SetText((FX_LPCWSTR)pField->GetValue());
|
| + pEdit->SetText(pField->GetValue().c_str());
|
|
|
| CPDF_Rect rcContent = pEdit->GetContentRect();
|
|
|
| @@ -3051,7 +3051,7 @@ FX_BOOL CPDFSDK_InterForm::SubmitFields(const CFX_WideString& csDestination, con
|
| return FALSE;
|
| }
|
|
|
| - pEnv->JS_docSubmitForm(pBuffer, nBufSize, (FX_LPCWSTR)csDestination);
|
| + pEnv->JS_docSubmitForm(pBuffer, nBufSize, csDestination.c_str());
|
|
|
| return TRUE;
|
| }
|
| @@ -3223,7 +3223,7 @@ FX_BOOL CPDFSDK_InterForm::SubmitForm(const CFX_WideString& sDestination, FX_BOO
|
| return FALSE;
|
| }
|
|
|
| - pEnv->JS_docSubmitForm(pBuffer, nBufSize, (FX_LPCWSTR)sDestination);
|
| + pEnv->JS_docSubmitForm(pBuffer, nBufSize, sDestination.c_str());
|
|
|
| if (bUrlEncoded && pBuffer)
|
| {
|
|
|