diff options
author | Ryan Harrison <rharrison@chromium.org> | 2018-01-04 15:38:54 -0500 |
---|---|---|
committer | Chromium commit bot <commit-bot@chromium.org> | 2018-01-04 20:54:11 +0000 |
commit | 24d779283af803077d8377fbdc49d9d07da335e7 (patch) | |
tree | b41866170ca658bd41d72dae67e031ef34466709 /xfa/fxfa/parser/cxfa_node.h | |
parent | 492ad362da4953ddcbd5c12a6517aabd1f513454 (diff) | |
download | pdfium-24d779283af803077d8377fbdc49d9d07da335e7.tar.xz |
Convert CXFA_Node::GetChild to take a size_t for the indexchromium/3312
Change-Id: I99ab62f03a42bb1dc5f4d228cd60c0e254a8c70b
Reviewed-on: https://pdfium-review.googlesource.com/22259
Commit-Queue: Ryan Harrison <rharrison@chromium.org>
Reviewed-by: dsinclair <dsinclair@chromium.org>
Diffstat (limited to 'xfa/fxfa/parser/cxfa_node.h')
-rw-r--r-- | xfa/fxfa/parser/cxfa_node.h | 6 |
1 files changed, 2 insertions, 4 deletions
diff --git a/xfa/fxfa/parser/cxfa_node.h b/xfa/fxfa/parser/cxfa_node.h index cc8d5e8f8d..dea53e4525 100644 --- a/xfa/fxfa/parser/cxfa_node.h +++ b/xfa/fxfa/parser/cxfa_node.h @@ -157,7 +157,7 @@ class CXFA_Node : public CXFA_Object { size_t CountChildren(XFA_Element eType, bool bOnlyChild); template <typename T> - T* GetChild(int32_t index, XFA_Element eType, bool bOnlyChild) { + T* GetChild(size_t index, XFA_Element eType, bool bOnlyChild) { return static_cast<T*>(GetChildInternal(index, eType, bOnlyChild)); } @@ -246,9 +246,7 @@ class CXFA_Node : public CXFA_Object { void OnRemoved(bool bNotify); Optional<void*> GetDefaultValue(XFA_Attribute attr, XFA_AttributeType eType) const; - CXFA_Node* GetChildInternal(int32_t index, - XFA_Element eType, - bool bOnlyChild); + CXFA_Node* GetChildInternal(size_t index, XFA_Element eType, bool bOnlyChild); CXFA_Node* GetFirstChildByClassInternal(XFA_Element eType) const; CXFA_Node* GetNextSameNameSiblingInternal( const WideStringView& wsNodeName) const; |