summaryrefslogtreecommitdiff
path: root/zenXml/zenxml/xml.h
diff options
context:
space:
mode:
Diffstat (limited to 'zenXml/zenxml/xml.h')
-rw-r--r--zenXml/zenxml/xml.h4
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)));
}
}
}
bgstack15