diff options
author | Tom Sepez <tsepez@chromium.org> | 2018-08-16 21:18:29 +0000 |
---|---|---|
committer | Chromium commit bot <commit-bot@chromium.org> | 2018-08-16 21:18:29 +0000 |
commit | df4e68c5eb293c9929c7d66e59d08afc21b04c86 (patch) | |
tree | 2f2109d48a095ac336b4bfaa08562d884e96ec75 /xfa/fxfa/parser/cxfa_nodehelper.h | |
parent | d5e282648a08a0b68c30edce51fafeeb5d76db7b (diff) | |
download | pdfium-df4e68c5eb293c9929c7d66e59d08afc21b04c86.tar.xz |
Remove optional argument from ResolveNodes_GetParent().
Conformity with standards.
Change-Id: Ia718700526477fd1826eb4900ab333ebf4c8a517
Reviewed-on: https://pdfium-review.googlesource.com/40353
Commit-Queue: Tom Sepez <tsepez@chromium.org>
Reviewed-by: Lei Zhang <thestig@chromium.org>
Diffstat (limited to 'xfa/fxfa/parser/cxfa_nodehelper.h')
-rw-r--r-- | xfa/fxfa/parser/cxfa_nodehelper.h | 10 |
1 files changed, 3 insertions, 7 deletions
diff --git a/xfa/fxfa/parser/cxfa_nodehelper.h b/xfa/fxfa/parser/cxfa_nodehelper.h index 49e537ccaa..ccf60ac3d6 100644 --- a/xfa/fxfa/parser/cxfa_nodehelper.h +++ b/xfa/fxfa/parser/cxfa_nodehelper.h @@ -26,9 +26,8 @@ class CXFA_NodeHelper { CXFA_Node* ResolveNodes_GetOneChild(CXFA_Node* parent, const wchar_t* pwsName, bool bIsClassName); - CXFA_Node* ResolveNodes_GetParent( - CXFA_Node* pNode, - XFA_LOGIC_TYPE eLogicType = XFA_LOGIC_NoTransparent); + CXFA_Node* ResolveNodes_GetParent(CXFA_Node* pNode, + XFA_LOGIC_TYPE eLogicType); int32_t NodeAcc_TraverseSiblings(CXFA_Node* parent, uint32_t dNameHash, @@ -48,10 +47,7 @@ class CXFA_NodeHelper { XFA_LOGIC_TYPE eLogicType, bool bIsProperty, bool bIsClassIndex); - WideString GetNameExpression( - CXFA_Node* refNode, - bool bIsAllPath, - XFA_LOGIC_TYPE eLogicType = XFA_LOGIC_NoTransparent); + WideString GetNameExpression(CXFA_Node* refNode, bool bIsAllPath); bool NodeIsTransparent(CXFA_Node* refNode); bool ResolveNodes_CreateNode(WideString wsName, WideString wsCondition, |