diff options
Diffstat (limited to 'xfa/fxfa/parser/cxfa_pageset.cpp')
-rw-r--r-- | xfa/fxfa/parser/cxfa_pageset.cpp | 17 |
1 files changed, 9 insertions, 8 deletions
diff --git a/xfa/fxfa/parser/cxfa_pageset.cpp b/xfa/fxfa/parser/cxfa_pageset.cpp index 2fea61857d..74f13b9c72 100644 --- a/xfa/fxfa/parser/cxfa_pageset.cpp +++ b/xfa/fxfa/parser/cxfa_pageset.cpp @@ -11,10 +11,11 @@ namespace { -const CXFA_Node::PropertyData kPropertyData[] = {{XFA_Element::Extras, 1, 0}, - {XFA_Element::Occur, 1, 0}, - {XFA_Element::Unknown, 0, 0}}; -const CXFA_Node::AttributeData kAttributeData[] = { +const CXFA_Node::PropertyData kPageSetPropertyData[] = { + {XFA_Element::Extras, 1, 0}, + {XFA_Element::Occur, 1, 0}, + {XFA_Element::Unknown, 0, 0}}; +const CXFA_Node::AttributeData kPageSetAttributeData[] = { {XFA_Attribute::Id, XFA_AttributeType::CData, nullptr}, {XFA_Attribute::Name, XFA_AttributeType::CData, nullptr}, {XFA_Attribute::Use, XFA_AttributeType::CData, nullptr}, @@ -26,7 +27,7 @@ const CXFA_Node::AttributeData kAttributeData[] = { {XFA_Attribute::Usehref, XFA_AttributeType::CData, nullptr}, {XFA_Attribute::Unknown, XFA_AttributeType::Integer, nullptr}}; -constexpr wchar_t kName[] = L"pageSet"; +constexpr wchar_t kPageSetName[] = L"pageSet"; } // namespace @@ -36,9 +37,9 @@ CXFA_PageSet::CXFA_PageSet(CXFA_Document* doc, XFA_PacketType packet) (XFA_XDPPACKET_Template | XFA_XDPPACKET_Form), XFA_ObjectType::ContainerNode, XFA_Element::PageSet, - kPropertyData, - kAttributeData, - kName, + kPageSetPropertyData, + kPageSetAttributeData, + kPageSetName, pdfium::MakeUnique<CJX_PageSet>(this)) {} CXFA_PageSet::~CXFA_PageSet() {} |