summaryrefslogtreecommitdiff
path: root/xfa/fxfa/parser/cxfa_agent.cpp
diff options
context:
space:
mode:
Diffstat (limited to 'xfa/fxfa/parser/cxfa_agent.cpp')
-rw-r--r--xfa/fxfa/parser/cxfa_agent.cpp8
1 files changed, 4 insertions, 4 deletions
diff --git a/xfa/fxfa/parser/cxfa_agent.cpp b/xfa/fxfa/parser/cxfa_agent.cpp
index 468b93895f..4643aa1280 100644
--- a/xfa/fxfa/parser/cxfa_agent.cpp
+++ b/xfa/fxfa/parser/cxfa_agent.cpp
@@ -8,13 +8,13 @@
namespace {
-const CXFA_Node::AttributeData kAttributeData[] = {
+const CXFA_Node::AttributeData kAgentAttributeData[] = {
{XFA_Attribute::Name, XFA_AttributeType::CData, nullptr},
{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"agent";
+constexpr wchar_t kAgentName[] = L"agent";
} // namespace
@@ -25,7 +25,7 @@ CXFA_Agent::CXFA_Agent(CXFA_Document* doc, XFA_PacketType packet)
XFA_ObjectType::Node,
XFA_Element::Agent,
nullptr,
- kAttributeData,
- kName) {}
+ kAgentAttributeData,
+ kAgentName) {}
CXFA_Agent::~CXFA_Agent() {}