summaryrefslogtreecommitdiff
path: root/fxjs/cjx_node.h
diff options
context:
space:
mode:
authorDan Sinclair <dsinclair@chromium.org>2017-11-02 18:15:07 +0000
committerChromium commit bot <commit-bot@chromium.org>2017-11-02 18:15:07 +0000
commit77fe069bd19ea8207664293f631c63dab330f825 (patch)
tree25ecc84aefed75c57c7783e464392591d71cc692 /fxjs/cjx_node.h
parentf45406f8ec992560353756cff1e2c3931984e62b (diff)
downloadpdfium-77fe069bd19ea8207664293f631c63dab330f825.tar.xz
Remove default value to CJX_Node::SetAttribute
The bNotify value has been moved into the call sites and the default removed. Change-Id: Ifd2c0252b0f1421f7fc244d69e6f6bddc80e5591 Reviewed-on: https://pdfium-review.googlesource.com/17450 Reviewed-by: Tom Sepez <tsepez@chromium.org> Commit-Queue: dsinclair <dsinclair@chromium.org>
Diffstat (limited to 'fxjs/cjx_node.h')
-rw-r--r--fxjs/cjx_node.h5
1 files changed, 2 insertions, 3 deletions
diff --git a/fxjs/cjx_node.h b/fxjs/cjx_node.h
index 77c564e11b..47fb0d62f0 100644
--- a/fxjs/cjx_node.h
+++ b/fxjs/cjx_node.h
@@ -55,11 +55,10 @@ class CJX_Node : public CJX_Object {
bool HasAttribute(XFA_ATTRIBUTE eAttr);
bool SetAttribute(XFA_ATTRIBUTE eAttr,
const WideStringView& wsValue,
- bool bNotify = false);
-
+ bool bNotify);
bool SetAttribute(const WideStringView& wsAttr,
const WideStringView& wsValue,
- bool bNotify = false);
+ bool bNotify);
bool GetAttribute(const WideStringView& wsAttr,
WideString& wsValue,
bool bUseDefault = true);