Index: xfa/fxfa/parser/xfa_document_serialize.cpp |
diff --git a/xfa/fxfa/parser/xfa_document_serialize.cpp b/xfa/fxfa/parser/xfa_document_serialize.cpp |
index 5555673f8db99363e02dead894fdde38933396d4..5db2025f6cc4a3df9e2b57c85de1a43ec15de228 100644 |
--- a/xfa/fxfa/parser/xfa_document_serialize.cpp |
+++ b/xfa/fxfa/parser/xfa_document_serialize.cpp |
@@ -371,8 +371,8 @@ static void XFA_DataExporter_RegenerateFormFile_Container( |
CXFA_Node* pNode, |
IFX_Stream* pStream, |
FX_BOOL bSaveXML = FALSE) { |
- XFA_Element eElement = pNode->GetElementType(); |
- if (eElement == XFA_Element::Field || eElement == XFA_Element::Draw || |
+ XFA_Element eType = pNode->GetElementType(); |
+ if (eType == XFA_Element::Field || eType == XFA_Element::Draw || |
!pNode->IsContainerNode()) { |
CFX_WideTextBuf buf; |
XFA_DataExporter_RegenerateFormFile_Changed(pNode, buf, bSaveXML); |