diff options
author | dsinclair <dsinclair@chromium.org> | 2016-06-09 11:48:23 -0700 |
---|---|---|
committer | Commit bot <commit-bot@chromium.org> | 2016-06-09 11:48:23 -0700 |
commit | 2f5582f46dce2abfe9d75ea5f885a2ce0a4c10d2 (patch) | |
tree | 5e4d1dd72b8af7e887912e9f8bf764a9044eba89 /xfa/fxfa/parser/xfa_script_eventpseudomodel.cpp | |
parent | bd136fb1ad8faa377bee0982ee9ef09d150ce6ca (diff) | |
download | pdfium-2f5582f46dce2abfe9d75ea5f885a2ce0a4c10d2.tar.xz |
Convert CFXJSE_Value::ToString to return.
ThiS Cl updates CFXJSE_Value::ToString() to return a CFX_ByteString instead
of taking an out parameter. It also adds a ToStringC() and ToWideString()
to hide the common conversions that are done on the string value.
Review-Url: https://codereview.chromium.org/2044293004
Diffstat (limited to 'xfa/fxfa/parser/xfa_script_eventpseudomodel.cpp')
-rw-r--r-- | xfa/fxfa/parser/xfa_script_eventpseudomodel.cpp | 4 |
1 files changed, 1 insertions, 3 deletions
diff --git a/xfa/fxfa/parser/xfa_script_eventpseudomodel.cpp b/xfa/fxfa/parser/xfa_script_eventpseudomodel.cpp index b494a91478..2a0c291e16 100644 --- a/xfa/fxfa/parser/xfa_script_eventpseudomodel.cpp +++ b/xfa/fxfa/parser/xfa_script_eventpseudomodel.cpp @@ -28,9 +28,7 @@ void Script_EventPseudoModel_StringProperty(CFXJSE_Value* pValue, CFX_WideString& wsValue, FX_BOOL bSetting) { if (bSetting) { - CFX_ByteString bsValue; - pValue->ToString(bsValue); - wsValue = CFX_WideString::FromUTF8(bsValue.AsStringC()); + wsValue = pValue->ToWideString(); } else { pValue->SetString(FX_UTF8Encode(wsValue).AsStringC()); } |