summaryrefslogtreecommitdiff
path: root/xfa/fxfa/parser/cxfa_binditems.cpp
diff options
context:
space:
mode:
Diffstat (limited to 'xfa/fxfa/parser/cxfa_binditems.cpp')
-rw-r--r--xfa/fxfa/parser/cxfa_binditems.cpp8
1 files changed, 4 insertions, 4 deletions
diff --git a/xfa/fxfa/parser/cxfa_binditems.cpp b/xfa/fxfa/parser/cxfa_binditems.cpp
index d7d72a7e3a..4116780561 100644
--- a/xfa/fxfa/parser/cxfa_binditems.cpp
+++ b/xfa/fxfa/parser/cxfa_binditems.cpp
@@ -11,14 +11,14 @@
namespace {
-const CXFA_Node::AttributeData kAttributeData[] = {
+const CXFA_Node::AttributeData kBindItemsAttributeData[] = {
{XFA_Attribute::Ref, XFA_AttributeType::CData, nullptr},
{XFA_Attribute::Connection, XFA_AttributeType::CData, nullptr},
{XFA_Attribute::LabelRef, XFA_AttributeType::CData, nullptr},
{XFA_Attribute::ValueRef, XFA_AttributeType::CData, nullptr},
{XFA_Attribute::Unknown, XFA_AttributeType::Integer, nullptr}};
-constexpr wchar_t kName[] = L"bindItems";
+constexpr wchar_t kBindItemsName[] = L"bindItems";
} // namespace
@@ -29,8 +29,8 @@ CXFA_BindItems::CXFA_BindItems(CXFA_Document* doc, XFA_PacketType packet)
XFA_ObjectType::Node,
XFA_Element::BindItems,
nullptr,
- kAttributeData,
- kName,
+ kBindItemsAttributeData,
+ kBindItemsName,
pdfium::MakeUnique<CJX_BindItems>(this)) {}
CXFA_BindItems::~CXFA_BindItems() {}