diff options
author | Dan Sinclair <dsinclair@chromium.org> | 2017-11-02 19:11:57 +0000 |
---|---|---|
committer | Chromium commit bot <commit-bot@chromium.org> | 2017-11-02 19:11:57 +0000 |
commit | 23aa2b0f8a3202337a40e8dcf3d8340bfd42e004 (patch) | |
tree | 51da1418339b19eb3ba9a175dc10e8ed29dbc3e9 /fxjs/cjx_node.h | |
parent | 3ac07ffafea1ee4d3cf985e32692849dd3fcfdfb (diff) | |
download | pdfium-23aa2b0f8a3202337a40e8dcf3d8340bfd42e004.tar.xz |
Remove default values from CJX_Node::SetCData
This CL removes the default values from SetCData and inlines at the call
sites.
Change-Id: I664338a8c7fec2ee9ec0c9ed9f892e57ea1ced43
Reviewed-on: https://pdfium-review.googlesource.com/17534
Commit-Queue: dsinclair <dsinclair@chromium.org>
Reviewed-by: Tom Sepez <tsepez@chromium.org>
Diffstat (limited to 'fxjs/cjx_node.h')
-rw-r--r-- | fxjs/cjx_node.h | 4 |
1 files changed, 2 insertions, 2 deletions
diff --git a/fxjs/cjx_node.h b/fxjs/cjx_node.h index df360011a4..7df789df50 100644 --- a/fxjs/cjx_node.h +++ b/fxjs/cjx_node.h @@ -88,8 +88,8 @@ class CJX_Node : public CJX_Object { bool TryCData(XFA_ATTRIBUTE eAttr, WideString& wsValue, bool bUseDefault); bool SetCData(XFA_ATTRIBUTE eAttr, const WideString& wsValue, - bool bNotify = false, - bool bScriptModify = false); + bool bNotify, + bool bScriptModify); WideStringView GetCData(XFA_ATTRIBUTE eAttr); bool TryContent(WideString& wsContent, |