summaryrefslogtreecommitdiff
path: root/xfa/fxfa/parser/cxfa_staple.cpp
diff options
context:
space:
mode:
Diffstat (limited to 'xfa/fxfa/parser/cxfa_staple.cpp')
-rw-r--r--xfa/fxfa/parser/cxfa_staple.cpp8
1 files changed, 4 insertions, 4 deletions
diff --git a/xfa/fxfa/parser/cxfa_staple.cpp b/xfa/fxfa/parser/cxfa_staple.cpp
index 31736d1d9d..e1fb7591aa 100644
--- a/xfa/fxfa/parser/cxfa_staple.cpp
+++ b/xfa/fxfa/parser/cxfa_staple.cpp
@@ -8,14 +8,14 @@
namespace {
-const CXFA_Node::AttributeData kAttributeData[] = {
+const CXFA_Node::AttributeData kStapleAttributeData[] = {
{XFA_Attribute::Mode, XFA_AttributeType::Enum,
(void*)XFA_AttributeEnum::UsePrinterSetting},
{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"staple";
+constexpr wchar_t kStapleName[] = L"staple";
} // namespace
@@ -26,7 +26,7 @@ CXFA_Staple::CXFA_Staple(CXFA_Document* doc, XFA_PacketType packet)
XFA_ObjectType::Node,
XFA_Element::Staple,
nullptr,
- kAttributeData,
- kName) {}
+ kStapleAttributeData,
+ kStapleName) {}
CXFA_Staple::~CXFA_Staple() {}