diff options
author | Dan Sinclair <dsinclair@chromium.org> | 2018-01-24 16:01:33 +0000 |
---|---|---|
committer | Chromium commit bot <commit-bot@chromium.org> | 2018-01-24 16:01:33 +0000 |
commit | 35347ab00b5a768e37d5b3a49ddb5b7dbeb6a53e (patch) | |
tree | 7d3a909963814da558531c5fcc655e3bd7b6978e /xfa/fxfa/parser/cxfa_node.h | |
parent | 73eae271218c69c1b55f4ed8606975e612d30673 (diff) | |
download | pdfium-35347ab00b5a768e37d5b3a49ddb5b7dbeb6a53e.tar.xz |
Make CreateUIChild a method of CXFA_Node
This CL changes CreateUIChild to be a method on node instead of
accepting the node as a parameter.
Change-Id: I5bf84cee010c1c02966def987a3bc2bcc7db0324
Reviewed-on: https://pdfium-review.googlesource.com/23690
Commit-Queue: dsinclair <dsinclair@chromium.org>
Reviewed-by: Ryan Harrison <rharrison@chromium.org>
Diffstat (limited to 'xfa/fxfa/parser/cxfa_node.h')
-rw-r--r-- | xfa/fxfa/parser/cxfa_node.h | 1 |
1 files changed, 1 insertions, 0 deletions
diff --git a/xfa/fxfa/parser/cxfa_node.h b/xfa/fxfa/parser/cxfa_node.h index 19111a6580..451e90c15b 100644 --- a/xfa/fxfa/parser/cxfa_node.h +++ b/xfa/fxfa/parser/cxfa_node.h @@ -514,6 +514,7 @@ class CXFA_Node : public CXFA_Object { int32_t nIndex); WideString FormatNumStr(const WideString& wsValue, IFX_Locale* pLocale); void GetItemLabel(const WideStringView& wsValue, WideString& wsLabel); + std::pair<XFA_Element, CXFA_Node*> CreateUIChild(); const PropertyData* const m_Properties; const AttributeData* const m_Attributes; |