diff options
Diffstat (limited to 'xfa/fxfa/parser/cxfa_debug.cpp')
-rw-r--r-- | xfa/fxfa/parser/cxfa_debug.cpp | 15 |
1 files changed, 8 insertions, 7 deletions
diff --git a/xfa/fxfa/parser/cxfa_debug.cpp b/xfa/fxfa/parser/cxfa_debug.cpp index 91cfd6302b..346cd11098 100644 --- a/xfa/fxfa/parser/cxfa_debug.cpp +++ b/xfa/fxfa/parser/cxfa_debug.cpp @@ -8,14 +8,15 @@ namespace { -const CXFA_Node::PropertyData kPropertyData[] = {{XFA_Element::Uri, 1, 0}, - {XFA_Element::Unknown, 0, 0}}; -const CXFA_Node::AttributeData kAttributeData[] = { +const CXFA_Node::PropertyData kDebugPropertyData[] = { + {XFA_Element::Uri, 1, 0}, + {XFA_Element::Unknown, 0, 0}}; +const CXFA_Node::AttributeData kDebugAttributeData[] = { {XFA_Attribute::Desc, XFA_AttributeType::CData, nullptr}, {XFA_Attribute::Lock, XFA_AttributeType::Integer, (void*)0}, {XFA_Attribute::Unknown, XFA_AttributeType::Integer, nullptr}}; -constexpr wchar_t kName[] = L"debug"; +constexpr wchar_t kDebugName[] = L"debug"; } // namespace @@ -25,8 +26,8 @@ CXFA_Debug::CXFA_Debug(CXFA_Document* doc, XFA_PacketType packet) XFA_XDPPACKET_Config, XFA_ObjectType::Node, XFA_Element::Debug, - kPropertyData, - kAttributeData, - kName) {} + kDebugPropertyData, + kDebugAttributeData, + kDebugName) {} CXFA_Debug::~CXFA_Debug() {} |