diff options
Diffstat (limited to 'xfa/fxfa/parser/cxfa_document_parser.cpp')
-rw-r--r-- | xfa/fxfa/parser/cxfa_document_parser.cpp | 4 |
1 files changed, 2 insertions, 2 deletions
diff --git a/xfa/fxfa/parser/cxfa_document_parser.cpp b/xfa/fxfa/parser/cxfa_document_parser.cpp index e4f85f2bac..f773a36897 100644 --- a/xfa/fxfa/parser/cxfa_document_parser.cpp +++ b/xfa/fxfa/parser/cxfa_document_parser.cpp @@ -127,7 +127,7 @@ bool MatchNodeName(CFX_XMLNode* pNode, if (!pNode || pNode->GetType() != FX_XMLNODE_Element) return false; - CFX_XMLElement* pElement = reinterpret_cast<CFX_XMLElement*>(pNode); + CFX_XMLElement* pElement = static_cast<CFX_XMLElement*>(pNode); WideString wsNodeStr = pElement->GetLocalTagName(); if (wsNodeStr != wsLocalTagName) return false; @@ -487,7 +487,7 @@ CXFA_Node* CXFA_DocumentParser::ParseAsXDPPacket_XDP( if (pChildItem == pXMLConfigDOMRoot) continue; - CFX_XMLElement* pElement = reinterpret_cast<CFX_XMLElement*>(pChildItem); + CFX_XMLElement* pElement = static_cast<CFX_XMLElement*>(pChildItem); WideString wsPacketName = pElement->GetLocalTagName(); const PacketInfo* pPacketInfo = GetPacketByName(wsPacketName.AsStringView()); |