diff options
Diffstat (limited to 'xfa/fxfa/parser/cxfa_form.cpp')
-rw-r--r-- | xfa/fxfa/parser/cxfa_form.cpp | 7 |
1 files changed, 5 insertions, 2 deletions
diff --git a/xfa/fxfa/parser/cxfa_form.cpp b/xfa/fxfa/parser/cxfa_form.cpp index a42291f663..e7d75e0161 100644 --- a/xfa/fxfa/parser/cxfa_form.cpp +++ b/xfa/fxfa/parser/cxfa_form.cpp @@ -8,8 +8,11 @@ namespace { -const XFA_Attribute kAttributeData[] = {XFA_Attribute::Checksum, - XFA_Attribute::Unknown}; +const CXFA_Node::AttributeData kAttributeData[] = { + {XFA_Attribute::Checksum, XFA_AttributeType::CData, + XFA_XDPPACKET_Template | XFA_XDPPACKET_Form | XFA_XDPPACKET_Form, + (void*)nullptr}, + {XFA_Attribute::Unknown, XFA_AttributeType::Integer, 0, nullptr}}; constexpr wchar_t kName[] = L"form"; |