diff options
author | Dan Sinclair <dsinclair@chromium.org> | 2017-11-02 19:07:58 +0000 |
---|---|---|
committer | Chromium commit bot <commit-bot@chromium.org> | 2017-11-02 19:07:58 +0000 |
commit | bf29e5b532e4ef9a309906083b33b6d4c48ff757 (patch) | |
tree | 06c879dd3294f38bd0e9aa5ae3708590d67bf794 | |
parent | b31433fdaf92a15edfd920043aea5293ccc7e73e (diff) | |
download | pdfium-bf29e5b532e4ef9a309906083b33b6d4c48ff757.tar.xz |
Remove CJX_Node::SetInteger default value
This CL removes the CJX_Node::SetInteger default value. All callsites
already passed in a value.
Change-Id: Ic3a1c3e3d896ca93ba0d5a3fe869d1273dd71dc7
Reviewed-on: https://pdfium-review.googlesource.com/17532
Commit-Queue: dsinclair <dsinclair@chromium.org>
Reviewed-by: Tom Sepez <tsepez@chromium.org>
-rw-r--r-- | fxjs/cjx_node.h | 2 |
1 files changed, 1 insertions, 1 deletions
diff --git a/fxjs/cjx_node.h b/fxjs/cjx_node.h index ea66f13ed8..863dcc53af 100644 --- a/fxjs/cjx_node.h +++ b/fxjs/cjx_node.h @@ -81,7 +81,7 @@ class CJX_Node : public CJX_Object { WideString GetContent(); bool TryInteger(XFA_ATTRIBUTE eAttr, int32_t& iValue, bool bUseDefault); - bool SetInteger(XFA_ATTRIBUTE eAttr, int32_t iValue, bool bNotify = false); + bool SetInteger(XFA_ATTRIBUTE eAttr, int32_t iValue, bool bNotify); int32_t GetInteger(XFA_ATTRIBUTE eAttr); bool TryCData(XFA_ATTRIBUTE eAttr, |