diff options
Diffstat (limited to 'xfa/fxfa/parser/cxfa_sharpxhtml.cpp')
-rw-r--r-- | xfa/fxfa/parser/cxfa_sharpxhtml.cpp | 8 |
1 files changed, 4 insertions, 4 deletions
diff --git a/xfa/fxfa/parser/cxfa_sharpxhtml.cpp b/xfa/fxfa/parser/cxfa_sharpxhtml.cpp index 51829b7745..eb2d83df42 100644 --- a/xfa/fxfa/parser/cxfa_sharpxhtml.cpp +++ b/xfa/fxfa/parser/cxfa_sharpxhtml.cpp @@ -8,11 +8,11 @@ namespace { -const CXFA_Node::AttributeData kAttributeData[] = { +const CXFA_Node::AttributeData kSharpxHTMLAttributeData[] = { {XFA_Attribute::Value, XFA_AttributeType::CData, nullptr}, {XFA_Attribute::Unknown, XFA_AttributeType::Integer, nullptr}}; -constexpr wchar_t kName[] = L"#xHTML"; +constexpr wchar_t kSharpxHTMLName[] = L"#xHTML"; } // namespace @@ -25,7 +25,7 @@ CXFA_SharpxHTML::CXFA_SharpxHTML(CXFA_Document* doc, XFA_PacketType packet) XFA_ObjectType::NodeV, XFA_Element::SharpxHTML, nullptr, - kAttributeData, - kName) {} + kSharpxHTMLAttributeData, + kSharpxHTMLName) {} CXFA_SharpxHTML::~CXFA_SharpxHTML() {} |