summaryrefslogtreecommitdiff
path: root/xfa/fxfa/parser/cxfa_subjectdn.cpp
diff options
context:
space:
mode:
Diffstat (limited to 'xfa/fxfa/parser/cxfa_subjectdn.cpp')
-rw-r--r--xfa/fxfa/parser/cxfa_subjectdn.cpp8
1 files changed, 4 insertions, 4 deletions
diff --git a/xfa/fxfa/parser/cxfa_subjectdn.cpp b/xfa/fxfa/parser/cxfa_subjectdn.cpp
index 29ab2faccc..15572eed3c 100644
--- a/xfa/fxfa/parser/cxfa_subjectdn.cpp
+++ b/xfa/fxfa/parser/cxfa_subjectdn.cpp
@@ -11,7 +11,7 @@
namespace {
-const CXFA_Node::AttributeData kAttributeData[] = {
+const CXFA_Node::AttributeData kSubjectDNAttributeData[] = {
{XFA_Attribute::Id, XFA_AttributeType::CData, nullptr},
{XFA_Attribute::Name, XFA_AttributeType::CData, nullptr},
{XFA_Attribute::Use, XFA_AttributeType::CData, nullptr},
@@ -19,7 +19,7 @@ const CXFA_Node::AttributeData kAttributeData[] = {
{XFA_Attribute::Usehref, XFA_AttributeType::CData, nullptr},
{XFA_Attribute::Unknown, XFA_AttributeType::Integer, nullptr}};
-constexpr wchar_t kName[] = L"subjectDN";
+constexpr wchar_t kSubjectDNName[] = L"subjectDN";
} // namespace
@@ -30,8 +30,8 @@ CXFA_SubjectDN::CXFA_SubjectDN(CXFA_Document* doc, XFA_PacketType packet)
XFA_ObjectType::NodeC,
XFA_Element::SubjectDN,
nullptr,
- kAttributeData,
- kName,
+ kSubjectDNAttributeData,
+ kSubjectDNName,
pdfium::MakeUnique<CJX_SubjectDN>(this)) {}
CXFA_SubjectDN::~CXFA_SubjectDN() {}