summaryrefslogtreecommitdiff
path: root/xfa/fxfa/parser/cxfa_map.cpp
diff options
context:
space:
mode:
Diffstat (limited to 'xfa/fxfa/parser/cxfa_map.cpp')
-rw-r--r--xfa/fxfa/parser/cxfa_map.cpp8
1 files changed, 4 insertions, 4 deletions
diff --git a/xfa/fxfa/parser/cxfa_map.cpp b/xfa/fxfa/parser/cxfa_map.cpp
index 3e0c041544..fb264a5f85 100644
--- a/xfa/fxfa/parser/cxfa_map.cpp
+++ b/xfa/fxfa/parser/cxfa_map.cpp
@@ -11,7 +11,7 @@
namespace {
-const CXFA_Node::AttributeData kAttributeData[] = {
+const CXFA_Node::AttributeData kMapAttributeData[] = {
{XFA_Attribute::Id, XFA_AttributeType::CData, nullptr},
{XFA_Attribute::Name, XFA_AttributeType::CData, nullptr},
{XFA_Attribute::Use, XFA_AttributeType::CData, nullptr},
@@ -22,7 +22,7 @@ const CXFA_Node::AttributeData kAttributeData[] = {
{XFA_Attribute::Lock, XFA_AttributeType::Integer, (void*)0},
{XFA_Attribute::Unknown, XFA_AttributeType::Integer, nullptr}};
-constexpr wchar_t kName[] = L"map";
+constexpr wchar_t kMapName[] = L"map";
} // namespace
@@ -33,8 +33,8 @@ CXFA_Map::CXFA_Map(CXFA_Document* doc, XFA_PacketType packet)
XFA_ObjectType::Node,
XFA_Element::Map,
nullptr,
- kAttributeData,
- kName,
+ kMapAttributeData,
+ kMapName,
pdfium::MakeUnique<CJX_Map>(this)) {}
CXFA_Map::~CXFA_Map() {}