diff options
Diffstat (limited to 'xfa/fxfa/parser/cxfa_cache.cpp')
-rw-r--r-- | xfa/fxfa/parser/cxfa_cache.cpp | 12 |
1 files changed, 6 insertions, 6 deletions
diff --git a/xfa/fxfa/parser/cxfa_cache.cpp b/xfa/fxfa/parser/cxfa_cache.cpp index 74227a3000..1c6d0a2974 100644 --- a/xfa/fxfa/parser/cxfa_cache.cpp +++ b/xfa/fxfa/parser/cxfa_cache.cpp @@ -8,15 +8,15 @@ namespace { -const CXFA_Node::PropertyData kPropertyData[] = { +const CXFA_Node::PropertyData kCachePropertyData[] = { {XFA_Element::TemplateCache, 1, 0}, {XFA_Element::Unknown, 0, 0}}; -const CXFA_Node::AttributeData kAttributeData[] = { +const CXFA_Node::AttributeData kCacheAttributeData[] = { {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"cache"; +constexpr wchar_t kCacheName[] = L"cache"; } // namespace @@ -26,8 +26,8 @@ CXFA_Cache::CXFA_Cache(CXFA_Document* doc, XFA_PacketType packet) XFA_XDPPACKET_Config, XFA_ObjectType::Node, XFA_Element::Cache, - kPropertyData, - kAttributeData, - kName) {} + kCachePropertyData, + kCacheAttributeData, + kCacheName) {} CXFA_Cache::~CXFA_Cache() {} |