diff options
author | Dan Sinclair <dsinclair@chromium.org> | 2018-01-11 14:45:42 +0000 |
---|---|---|
committer | Chromium commit bot <commit-bot@chromium.org> | 2018-01-11 14:45:42 +0000 |
commit | fc77dee8e5d0f941ea6050aa632254b588a21f87 (patch) | |
tree | 5316603d5fbab20a63aa4dd906bc184020b93d98 /fxjs | |
parent | 454eea606f8cd1ecdcd4816fa9d6600558287af0 (diff) | |
download | pdfium-fc77dee8e5d0f941ea6050aa632254b588a21f87.tar.xz |
Cleanup duplicate CXFA_Node accessors
These two accessors exist with other names or signatues, remove.
Change-Id: Ieac073b746553160e4f2c41d9b63be47ad0ab61f
Reviewed-on: https://pdfium-review.googlesource.com/22711
Reviewed-by: Ryan Harrison <rharrison@chromium.org>
Commit-Queue: dsinclair <dsinclair@chromium.org>
Diffstat (limited to 'fxjs')
-rw-r--r-- | fxjs/xfa/cjx_object.cpp | 4 |
1 files changed, 2 insertions, 2 deletions
diff --git a/fxjs/xfa/cjx_object.cpp b/fxjs/xfa/cjx_object.cpp index 027c151d3f..cb76497618 100644 --- a/fxjs/xfa/cjx_object.cpp +++ b/fxjs/xfa/cjx_object.cpp @@ -903,7 +903,7 @@ std::pair<CXFA_Node*, int32_t> CJX_Object::GetPropertyInternal( return {nullptr, 0}; int32_t iCount = 0; - for (CXFA_Node* pNode = xfaNode->GetChildNode(); pNode; + for (CXFA_Node* pNode = xfaNode->GetFirstChild(); pNode; pNode = pNode->GetNextSibling()) { if (pNode->GetElementType() == eProperty) { iCount++; @@ -927,7 +927,7 @@ CXFA_Node* CJX_Object::GetOrCreatePropertyInternal(int32_t index, return node; if (xfaNode->HasPropertyFlags(eProperty, XFA_PROPERTYFLAG_OneOf)) { - for (CXFA_Node* pNode = xfaNode->GetChildNode(); pNode; + for (CXFA_Node* pNode = xfaNode->GetFirstChild(); pNode; pNode = pNode->GetNextSibling()) { if (xfaNode->HasPropertyFlags(pNode->GetElementType(), XFA_PROPERTYFLAG_OneOf)) { |