diff options
author | tsepez <tsepez@chromium.org> | 2016-09-08 11:28:14 -0700 |
---|---|---|
committer | Commit bot <commit-bot@chromium.org> | 2016-09-08 11:28:14 -0700 |
commit | a31da74cffa8c3ff919051cc49bc006aeb55d345 (patch) | |
tree | 0457bd7c0a74298d47e25cd1cdbf13b2622493ef /fpdfsdk/cpdfsdk_widgethandler.cpp | |
parent | cd5dc855df0ca37b7667b5f3ceb951d2d417d99f (diff) | |
download | pdfium-a31da74cffa8c3ff919051cc49bc006aeb55d345.tar.xz |
Pass CFX_WideString further down widget callers
Avoid a couple of places where we copy the raw string back into a
brand-new widestring.
There are a few places where the difference between a null
ptr and an empty string control the logic, and I left these
as-is. Other places can just take the string by const ref.
Review-Url: https://codereview.chromium.org/2323493002
Diffstat (limited to 'fpdfsdk/cpdfsdk_widgethandler.cpp')
-rw-r--r-- | fpdfsdk/cpdfsdk_widgethandler.cpp | 2 |
1 files changed, 1 insertions, 1 deletions
diff --git a/fpdfsdk/cpdfsdk_widgethandler.cpp b/fpdfsdk/cpdfsdk_widgethandler.cpp index 1a9bdacf24..b490daa8ba 100644 --- a/fpdfsdk/cpdfsdk_widgethandler.cpp +++ b/fpdfsdk/cpdfsdk_widgethandler.cpp @@ -241,7 +241,7 @@ void CPDFSDK_WidgetHandler::OnLoad(CPDFSDK_Annot* pAnnot) { FX_BOOL bFormatted = FALSE; CFX_WideString sValue = pWidget->OnFormat(bFormatted); if (bFormatted && nFieldType == FIELDTYPE_COMBOBOX) - pWidget->ResetAppearance(sValue.c_str(), FALSE); + pWidget->ResetAppearance(&sValue, FALSE); } #ifdef PDF_ENABLE_XFA |