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.h2
1 files changed, 1 insertions, 1 deletions
diff --git a/xfa/fxfa/parser/cxfa_list.h b/xfa/fxfa/parser/cxfa_list.h
index 953e861835..de9406dd06 100644
--- a/xfa/fxfa/parser/cxfa_list.h
+++ b/xfa/fxfa/parser/cxfa_list.h
@@ -21,7 +21,7 @@ class CXFA_List : public CXFA_Object {
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 CXFA_Node* Item(int32_t iIndex) = 0;
+ virtual CXFA_Node* Item(size_t iIndex) = 0;
protected:
CXFA_List(CXFA_Document* doc, std::unique_ptr<CJX_Object> js_obj);