diff options
author | B. Stack <bgstack15@gmail.com> | 2022-03-09 14:43:11 +0000 |
---|---|---|
committer | B. Stack <bgstack15@gmail.com> | 2022-03-09 14:43:11 +0000 |
commit | 106716ec0daedf3a19bcc0036e81305968c543ee (patch) | |
tree | 9e6113f824015cdbf5c954f598d6b58f813a7984 /zenXml | |
parent | Merge branch 'b11.17' into 'master' (diff) | |
parent | add upstream 11.18 (diff) | |
download | FreeFileSync-106716ec0daedf3a19bcc0036e81305968c543ee.tar.gz FreeFileSync-106716ec0daedf3a19bcc0036e81305968c543ee.tar.bz2 FreeFileSync-106716ec0daedf3a19bcc0036e81305968c543ee.zip |
Merge branch 'b11.18' into 'master'11.18
add upstream 11.18
See merge request opensource-tracking/FreeFileSync!42
Diffstat (limited to 'zenXml')
-rw-r--r-- | zenXml/zenxml/xml.h | 4 |
1 files changed, 2 insertions, 2 deletions
diff --git a/zenXml/zenxml/xml.h b/zenXml/zenxml/xml.h index 7e50221a..829bb5f3 100644 --- a/zenXml/zenxml/xml.h +++ b/zenXml/zenxml/xml.h @@ -68,8 +68,8 @@ XmlDoc loadXml(const Zstring& filePath) //throw FileError throw FileError( replaceCpy(replaceCpy(replaceCpy(_("Error parsing file %x, row %y, column %z."), L"%x", fmtPath(filePath)), - L"%y", numberTo<std::wstring>(e.row + 1)), - L"%z", numberTo<std::wstring>(e.col + 1))); + L"%y", formatNumber(e.row + 1)), + L"%z", formatNumber(e.col + 1))); } } } |