summaryrefslogtreecommitdiff
path: root/xfa/fxfa/parser/cxfa_lockdocument.cpp
diff options
context:
space:
mode:
Diffstat (limited to 'xfa/fxfa/parser/cxfa_lockdocument.cpp')
-rw-r--r--xfa/fxfa/parser/cxfa_lockdocument.cpp8
1 files changed, 4 insertions, 4 deletions
diff --git a/xfa/fxfa/parser/cxfa_lockdocument.cpp b/xfa/fxfa/parser/cxfa_lockdocument.cpp
index 7e653347e0..b38234c36b 100644
--- a/xfa/fxfa/parser/cxfa_lockdocument.cpp
+++ b/xfa/fxfa/parser/cxfa_lockdocument.cpp
@@ -8,7 +8,7 @@
namespace {
-const CXFA_Node::AttributeData kAttributeData[] = {
+const CXFA_Node::AttributeData kLockDocumentAttributeData[] = {
{XFA_Attribute::Id, XFA_AttributeType::CData, nullptr},
{XFA_Attribute::Use, XFA_AttributeType::CData, nullptr},
{XFA_Attribute::Type, XFA_AttributeType::Enum,
@@ -16,7 +16,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"lockDocument";
+constexpr wchar_t kLockDocumentName[] = L"lockDocument";
} // namespace
@@ -27,7 +27,7 @@ CXFA_LockDocument::CXFA_LockDocument(CXFA_Document* doc, XFA_PacketType packet)
XFA_ObjectType::ContentNode,
XFA_Element::LockDocument,
nullptr,
- kAttributeData,
- kName) {}
+ kLockDocumentAttributeData,
+ kLockDocumentName) {}
CXFA_LockDocument::~CXFA_LockDocument() {}