diff options
Diffstat (limited to 'xfa/fxfa/parser/cxfa_bind.cpp')
-rw-r--r-- | xfa/fxfa/parser/cxfa_bind.cpp | 15 |
1 files changed, 8 insertions, 7 deletions
diff --git a/xfa/fxfa/parser/cxfa_bind.cpp b/xfa/fxfa/parser/cxfa_bind.cpp index d35a2cd24a..6ae84ae469 100644 --- a/xfa/fxfa/parser/cxfa_bind.cpp +++ b/xfa/fxfa/parser/cxfa_bind.cpp @@ -13,9 +13,10 @@ namespace { -const CXFA_Node::PropertyData kPropertyData[] = {{XFA_Element::Picture, 1, 0}, - {XFA_Element::Unknown, 0, 0}}; -const CXFA_Node::AttributeData kAttributeData[] = { +const CXFA_Node::PropertyData kBindPropertyData[] = { + {XFA_Element::Picture, 1, 0}, + {XFA_Element::Unknown, 0, 0}}; +const CXFA_Node::AttributeData kBindAttributeData[] = { {XFA_Attribute::Id, XFA_AttributeType::CData, nullptr}, {XFA_Attribute::Name, XFA_AttributeType::CData, nullptr}, {XFA_Attribute::Ref, XFA_AttributeType::CData, nullptr}, @@ -28,7 +29,7 @@ const CXFA_Node::AttributeData kAttributeData[] = { (void*)XFA_AttributeEnum::Once}, {XFA_Attribute::Unknown, XFA_AttributeType::Integer, nullptr}}; -constexpr wchar_t kName[] = L"bind"; +constexpr wchar_t kBindName[] = L"bind"; } // namespace @@ -39,9 +40,9 @@ CXFA_Bind::CXFA_Bind(CXFA_Document* doc, XFA_PacketType packet) XFA_XDPPACKET_Form), XFA_ObjectType::Node, XFA_Element::Bind, - kPropertyData, - kAttributeData, - kName, + kBindPropertyData, + kBindAttributeData, + kBindName, pdfium::MakeUnique<CJX_Bind>(this)) {} CXFA_Bind::~CXFA_Bind() {} |