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/include/fxfa_basic.h | |
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/include/fxfa_basic.h')
-rw-r--r-- | xfa/fxfa/include/fxfa_basic.h | 2 |
1 files changed, 1 insertions, 1 deletions
diff --git a/xfa/fxfa/include/fxfa_basic.h b/xfa/fxfa/include/fxfa_basic.h index 51d81cd157..9fe2650ffc 100644 --- a/xfa/fxfa/include/fxfa_basic.h +++ b/xfa/fxfa/include/fxfa_basic.h @@ -938,7 +938,7 @@ struct XFA_ELEMENTINFO { XFA_ObjectType eObjectType; }; -const XFA_ELEMENTINFO* XFA_GetElementByName(const CFX_WideStringC& wsName); +XFA_Element XFA_GetElementTypeForName(const CFX_WideStringC& wsName); const XFA_ELEMENTINFO* XFA_GetElementByID(XFA_Element eName); enum XFA_ATTRIBUTETYPE { |