Chromium Code Reviews
chromiumcodereview-hr@appspot.gserviceaccount.com (chromiumcodereview-hr) | Please choose your nickname with Settings | Help | Chromium Project | Gerrit Changes | Sign out
(587)

Unified Diff: fpdfsdk/src/fsdk_baseform.cpp

Issue 811593007: XFA: merge patch from CL 733693003, getting rid of more casts (Closed) Base URL: https://pdfium.googlesource.com/pdfium.git@xfa
Patch Set: Created 6 years ago
Use n/p to move between diff chunks; N/P to move between comments. Draft comments are only viewable by you.
Jump to:
View side-by-side diff with in-line comments
Download patch
« no previous file with comments | « fpdfsdk/include/javascript/JS_Define.h ('k') | fpdfsdk/src/javascript/Document.cpp » ('j') | no next file with comments »
Expand Comments ('e') | Collapse Comments ('c') | Show Comments Hide Comments ('s')
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)
{
« no previous file with comments | « fpdfsdk/include/javascript/JS_Define.h ('k') | fpdfsdk/src/javascript/Document.cpp » ('j') | no next file with comments »

Powered by Google App Engine
This is Rietveld 408576698