diff options
author | Dan Sinclair <dsinclair@chromium.org> | 2017-11-02 20:41:38 +0000 |
---|---|---|
committer | Chromium commit bot <commit-bot@chromium.org> | 2017-11-02 20:41:38 +0000 |
commit | 453d786b16e431ee9e8174de8b0c62358d81a8a0 (patch) | |
tree | 030b8ad7c971d05ca9eb3082a1de84a177a892b4 /fxjs/cjx_node.cpp | |
parent | 5471335c2a70776b6734a4ee5a6732ee373c2236 (diff) | |
download | pdfium-453d786b16e431ee9e8174de8b0c62358d81a8a0.tar.xz |
Remove default values from CJX_Node::{TryUserData|GetScriptContent}
This CL removes the default values an inlines into the call sites.
Change-Id: Ic4d05db306eafc037a2f312a6780dbae79097b6c
Reviewed-on: https://pdfium-review.googlesource.com/17612
Commit-Queue: dsinclair <dsinclair@chromium.org>
Reviewed-by: Tom Sepez <tsepez@chromium.org>
Diffstat (limited to 'fxjs/cjx_node.cpp')
-rw-r--r-- | fxjs/cjx_node.cpp | 2 |
1 files changed, 1 insertions, 1 deletions
diff --git a/fxjs/cjx_node.cpp b/fxjs/cjx_node.cpp index 131fe5567b..0a053eec3e 100644 --- a/fxjs/cjx_node.cpp +++ b/fxjs/cjx_node.cpp @@ -3527,7 +3527,7 @@ WideString CJX_Node::GetScriptContent(bool bScriptModify) { } WideString CJX_Node::GetContent() { - return GetScriptContent(); + return GetScriptContent(false); } bool CJX_Node::TryContent(WideString& wsContent, |