diff options
Diffstat (limited to 'xfa/fxfa/parser/cxfa_setproperty.cpp')
-rw-r--r-- | xfa/fxfa/parser/cxfa_setproperty.cpp | 13 |
1 files changed, 4 insertions, 9 deletions
diff --git a/xfa/fxfa/parser/cxfa_setproperty.cpp b/xfa/fxfa/parser/cxfa_setproperty.cpp index 6b68bfa9a1..1bbcfdbd49 100644 --- a/xfa/fxfa/parser/cxfa_setproperty.cpp +++ b/xfa/fxfa/parser/cxfa_setproperty.cpp @@ -9,15 +9,10 @@ namespace { const CXFA_Node::AttributeData kAttributeData[] = { - {XFA_Attribute::Ref, XFA_AttributeType::CData, - XFA_XDPPACKET_SourceSet | XFA_XDPPACKET_Config | XFA_XDPPACKET_Template | - XFA_XDPPACKET_Form, - nullptr}, - {XFA_Attribute::Connection, XFA_AttributeType::CData, - XFA_XDPPACKET_Template | XFA_XDPPACKET_Form, nullptr}, - {XFA_Attribute::Target, XFA_AttributeType::CData, - XFA_XDPPACKET_Template | XFA_XDPPACKET_Form, nullptr}, - {XFA_Attribute::Unknown, XFA_AttributeType::Integer, 0, nullptr}}; + {XFA_Attribute::Ref, XFA_AttributeType::CData, nullptr}, + {XFA_Attribute::Connection, XFA_AttributeType::CData, nullptr}, + {XFA_Attribute::Target, XFA_AttributeType::CData, nullptr}, + {XFA_Attribute::Unknown, XFA_AttributeType::Integer, nullptr}}; constexpr wchar_t kName[] = L"setProperty"; |