summaryrefslogtreecommitdiff
path: root/xfa/fxfa/parser/cxfa_speak.cpp
diff options
context:
space:
mode:
Diffstat (limited to 'xfa/fxfa/parser/cxfa_speak.cpp')
-rw-r--r--xfa/fxfa/parser/cxfa_speak.cpp8
1 files changed, 4 insertions, 4 deletions
diff --git a/xfa/fxfa/parser/cxfa_speak.cpp b/xfa/fxfa/parser/cxfa_speak.cpp
index ce05682be2..5d9f306ebb 100644
--- a/xfa/fxfa/parser/cxfa_speak.cpp
+++ b/xfa/fxfa/parser/cxfa_speak.cpp
@@ -11,7 +11,7 @@
namespace {
-const CXFA_Node::AttributeData kAttributeData[] = {
+const CXFA_Node::AttributeData kSpeakAttributeData[] = {
{XFA_Attribute::Id, XFA_AttributeType::CData, nullptr},
{XFA_Attribute::Rid, XFA_AttributeType::CData, nullptr},
{XFA_Attribute::Use, XFA_AttributeType::CData, nullptr},
@@ -21,7 +21,7 @@ const CXFA_Node::AttributeData kAttributeData[] = {
{XFA_Attribute::Disable, XFA_AttributeType::Boolean, (void*)0},
{XFA_Attribute::Unknown, XFA_AttributeType::Integer, nullptr}};
-constexpr wchar_t kName[] = L"speak";
+constexpr wchar_t kSpeakName[] = L"speak";
} // namespace
@@ -32,8 +32,8 @@ CXFA_Speak::CXFA_Speak(CXFA_Document* doc, XFA_PacketType packet)
XFA_ObjectType::TextNode,
XFA_Element::Speak,
nullptr,
- kAttributeData,
- kName,
+ kSpeakAttributeData,
+ kSpeakName,
pdfium::MakeUnique<CJX_Speak>(this)) {}
CXFA_Speak::~CXFA_Speak() {}