summaryrefslogtreecommitdiff
path: root/xfa/fxfa/parser/cxfa_list.h
diff options
context:
space:
mode:
Diffstat (limited to 'xfa/fxfa/parser/cxfa_list.h')
-rw-r--r--xfa/fxfa/parser/cxfa_list.h6
1 files changed, 3 insertions, 3 deletions
diff --git a/xfa/fxfa/parser/cxfa_list.h b/xfa/fxfa/parser/cxfa_list.h
index de9406dd06..6618286317 100644
--- a/xfa/fxfa/parser/cxfa_list.h
+++ b/xfa/fxfa/parser/cxfa_list.h
@@ -18,9 +18,9 @@ class CXFA_List : public CXFA_Object {
~CXFA_List() override;
virtual size_t GetLength() = 0;
- virtual bool Append(CXFA_Node* pNode) = 0;
- virtual bool Insert(CXFA_Node* pNewNode, CXFA_Node* pBeforeNode) = 0;
- virtual bool Remove(CXFA_Node* pNode) = 0;
+ virtual void Append(CXFA_Node* pNode) = 0;
+ virtual void Insert(CXFA_Node* pNewNode, CXFA_Node* pBeforeNode) = 0;
+ virtual void Remove(CXFA_Node* pNode) = 0;
virtual CXFA_Node* Item(size_t iIndex) = 0;
protected: