diff options
author | Dan Sinclair <dsinclair@chromium.org> | 2018-02-07 17:10:22 +0000 |
---|---|---|
committer | Chromium commit bot <commit-bot@chromium.org> | 2018-02-07 17:10:22 +0000 |
commit | c0c32b0a3af11624a1f3eaeb9d940d525b54cd4d (patch) | |
tree | 327d1df5334ac3893d5714ca023ab2d81b0ff151 /xfa/fxfa/parser/cxfa_arraynodelist.h | |
parent | b3a3eaab0471ed4fe22299c02b51b16bec813773 (diff) | |
download | pdfium-c0c32b0a3af11624a1f3eaeb9d940d525b54cd4d.tar.xz |
Remove unused return values from CXFA_Node
This CL removes the unused return values from InsertChild and
RemoveChild methods in CXFA_Node.
Bug: chromium:807863
Change-Id: Iac468afc5c48f51e7df3ea12d11b128a0ac124ea
Reviewed-on: https://pdfium-review.googlesource.com/25670
Commit-Queue: dsinclair <dsinclair@chromium.org>
Reviewed-by: Henrique Nakashima <hnakashima@chromium.org>
Reviewed-by: Ryan Harrison <rharrison@chromium.org>
Diffstat (limited to 'xfa/fxfa/parser/cxfa_arraynodelist.h')
-rw-r--r-- | xfa/fxfa/parser/cxfa_arraynodelist.h | 6 |
1 files changed, 3 insertions, 3 deletions
diff --git a/xfa/fxfa/parser/cxfa_arraynodelist.h b/xfa/fxfa/parser/cxfa_arraynodelist.h index 346b206f20..dc798bcd59 100644 --- a/xfa/fxfa/parser/cxfa_arraynodelist.h +++ b/xfa/fxfa/parser/cxfa_arraynodelist.h @@ -21,9 +21,9 @@ class CXFA_ArrayNodeList : public CXFA_TreeList { // From CXFA_TreeList. size_t GetLength() override; - bool Append(CXFA_Node* pNode) override; - bool Insert(CXFA_Node* pNewNode, CXFA_Node* pBeforeNode) override; - bool Remove(CXFA_Node* pNode) override; + void Append(CXFA_Node* pNode) override; + void Insert(CXFA_Node* pNewNode, CXFA_Node* pBeforeNode) override; + void Remove(CXFA_Node* pNode) override; CXFA_Node* Item(size_t iIndex) override; void SetArrayNodeList(const std::vector<CXFA_Node*>& srcArray); |