From 7c855d11f23dc03d64a0099473a95402f3175280 Mon Sep 17 00:00:00 2001 From: B Stack Date: Tue, 15 Jan 2019 08:16:08 -0500 Subject: 10.8 --- 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 15d635bd..27701248 100755 --- 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 (getFileSize(filePath) == stream.size()) //throw FileError + if (getFileDetails(filePath).fileSize == stream.size()) //throw FileError if (loadBinContainer(filePath, nullptr /*notifyUnbufferedIO*/) == stream) //throw FileError return; } -- cgit