summaryrefslogtreecommitdiff
path: root/xfa/fxfa/parser/cxfa_defaulttypeface.cpp
diff options
context:
space:
mode:
Diffstat (limited to 'xfa/fxfa/parser/cxfa_defaulttypeface.cpp')
-rw-r--r--xfa/fxfa/parser/cxfa_defaulttypeface.cpp8
1 files changed, 4 insertions, 4 deletions
diff --git a/xfa/fxfa/parser/cxfa_defaulttypeface.cpp b/xfa/fxfa/parser/cxfa_defaulttypeface.cpp
index 60da7867a7..f7124b1835 100644
--- a/xfa/fxfa/parser/cxfa_defaulttypeface.cpp
+++ b/xfa/fxfa/parser/cxfa_defaulttypeface.cpp
@@ -8,14 +8,14 @@
namespace {
-const CXFA_Node::AttributeData kAttributeData[] = {
+const CXFA_Node::AttributeData kDefaultTypefaceAttributeData[] = {
{XFA_Attribute::Desc, XFA_AttributeType::CData, nullptr},
{XFA_Attribute::WritingScript, XFA_AttributeType::Enum,
(void*)XFA_AttributeEnum::Asterisk},
{XFA_Attribute::Lock, XFA_AttributeType::Integer, (void*)0},
{XFA_Attribute::Unknown, XFA_AttributeType::Integer, nullptr}};
-constexpr wchar_t kName[] = L"defaultTypeface";
+constexpr wchar_t kDefaultTypefaceName[] = L"defaultTypeface";
} // namespace
@@ -27,7 +27,7 @@ CXFA_DefaultTypeface::CXFA_DefaultTypeface(CXFA_Document* doc,
XFA_ObjectType::NodeV,
XFA_Element::DefaultTypeface,
nullptr,
- kAttributeData,
- kName) {}
+ kDefaultTypefaceAttributeData,
+ kDefaultTypefaceName) {}
CXFA_DefaultTypeface::~CXFA_DefaultTypeface() {}