diff options
author | Dan Sinclair <dsinclair@chromium.org> | 2017-11-02 19:15:03 +0000 |
---|---|---|
committer | Chromium commit bot <commit-bot@chromium.org> | 2017-11-02 19:15:03 +0000 |
commit | 8946aec4c3e727aae806f9858c2329ce368dd517 (patch) | |
tree | 6d01927599e7c069e957b5ce9f57456f56aacdcb /xfa/fxfa/parser/cxfa_script.cpp | |
parent | 23aa2b0f8a3202337a40e8dcf3d8340bfd42e004 (diff) | |
download | pdfium-8946aec4c3e727aae806f9858c2329ce368dd517.tar.xz |
Remove default values from CJX_Node::TryContent
This CL removes the default values from TryContent and inlines into the
call sites.
Change-Id: I2d3f41f77364a0b923931479a60e07eae98dd5a9
Reviewed-on: https://pdfium-review.googlesource.com/17550
Commit-Queue: dsinclair <dsinclair@chromium.org>
Reviewed-by: Tom Sepez <tsepez@chromium.org>
Diffstat (limited to 'xfa/fxfa/parser/cxfa_script.cpp')
-rw-r--r-- | xfa/fxfa/parser/cxfa_script.cpp | 2 |
1 files changed, 1 insertions, 1 deletions
diff --git a/xfa/fxfa/parser/cxfa_script.cpp b/xfa/fxfa/parser/cxfa_script.cpp index c548dea394..fcb0f95af1 100644 --- a/xfa/fxfa/parser/cxfa_script.cpp +++ b/xfa/fxfa/parser/cxfa_script.cpp @@ -27,5 +27,5 @@ int32_t CXFA_Script::GetRunAt() { } void CXFA_Script::GetExpression(WideString& wsExpression) { - m_pNode->JSNode()->TryContent(wsExpression); + m_pNode->JSNode()->TryContent(wsExpression, false, true); } |