diff options
author | dsinclair <dsinclair@chromium.org> | 2016-06-23 12:14:55 -0700 |
---|---|---|
committer | Commit bot <commit-bot@chromium.org> | 2016-06-23 12:14:55 -0700 |
commit | 6e12478cb298c3a8277493ee79ae0b73d6df8554 (patch) | |
tree | 46e28dbab97bbe41cca67ace9a3a05429c9cd519 /xfa/fxfa/parser/xfa_script_resolveprocessor.cpp | |
parent | f7f659c2c98a4d02e3695266d33f449b7be01af9 (diff) | |
download | pdfium-6e12478cb298c3a8277493ee79ae0b73d6df8554.tar.xz |
Change XFA_GetElementByName to XFA_GetElementTypeForName
This method was only ever used to get the XFA_Element type for the given
element name. Changed to make the signature match the usage.
Review-Url: https://codereview.chromium.org/2095733002
Diffstat (limited to 'xfa/fxfa/parser/xfa_script_resolveprocessor.cpp')
-rw-r--r-- | xfa/fxfa/parser/xfa_script_resolveprocessor.cpp | 9 |
1 files changed, 4 insertions, 5 deletions
diff --git a/xfa/fxfa/parser/xfa_script_resolveprocessor.cpp b/xfa/fxfa/parser/xfa_script_resolveprocessor.cpp index a78ad7bb6b..bcfaa113d4 100644 --- a/xfa/fxfa/parser/xfa_script_resolveprocessor.cpp +++ b/xfa/fxfa/parser/xfa_script_resolveprocessor.cpp @@ -362,11 +362,10 @@ int32_t CXFA_ResolveProcessor::XFA_ResolveNodes_Normal( pProp = pInstanceManager->GetProperty(0, XFA_Element::Occur, TRUE); } } else { - const XFA_ELEMENTINFO* pElement = - XFA_GetElementByName(wsName.AsStringC()); - if (pElement) { - pProp = curNode->AsNode()->GetProperty( - 0, pElement->eName, pElement->eName != XFA_Element::PageSet); + XFA_Element eType = XFA_GetElementTypeForName(wsName.AsStringC()); + if (eType != XFA_Element::Unknown) { + pProp = curNode->AsNode()->GetProperty(0, eType, + eType != XFA_Element::PageSet); } } if (pProp) { |