From 27177c9cbc47d4114ccee56015fb0407e7e258cc Mon Sep 17 00:00:00 2001 From: B Stack Date: Tue, 12 Mar 2019 16:09:20 -0400 Subject: 10.10 --- zenXml/zenxml/xml.h | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) (limited to 'zenXml') diff --git a/zenXml/zenxml/xml.h b/zenXml/zenxml/xml.h index 27701248..15d635bd 100644 --- a/zenXml/zenxml/xml.h +++ b/zenXml/zenxml/xml.h @@ -90,7 +90,7 @@ void saveXml(const XmlDoc& doc, const Zstring& filePath) //throw FileError try //only update XML file if there are changes { - if (getFileDetails(filePath).fileSize == stream.size()) //throw FileError + if (getFileSize(filePath) == stream.size()) //throw FileError if (loadBinContainer(filePath, nullptr /*notifyUnbufferedIO*/) == stream) //throw FileError return; } -- cgit