diff options
Diffstat (limited to 'xfa/fxfa/parser/cxfa_node.h')
-rw-r--r-- | xfa/fxfa/parser/cxfa_node.h | 6 |
1 files changed, 3 insertions, 3 deletions
diff --git a/xfa/fxfa/parser/cxfa_node.h b/xfa/fxfa/parser/cxfa_node.h index 27bdab0195..c3b2fd1b84 100644 --- a/xfa/fxfa/parser/cxfa_node.h +++ b/xfa/fxfa/parser/cxfa_node.h @@ -172,9 +172,9 @@ class CXFA_Node : public CXFA_Object { return static_cast<T*>(GetChildInternal(index, eType, bOnlyChild)); } - int32_t InsertChild(int32_t index, CXFA_Node* pNode); - bool InsertChild(CXFA_Node* pNode, CXFA_Node* pBeforeNode); - bool RemoveChild(CXFA_Node* pNode, bool bNotify); + void InsertChild(int32_t index, CXFA_Node* pNode); + void InsertChild(CXFA_Node* pNode, CXFA_Node* pBeforeNode); + void RemoveChild(CXFA_Node* pNode, bool bNotify); CXFA_Node* Clone(bool bRecursive); |