diff options
Diffstat (limited to 'tools')
-rw-r--r-- | tools/source/xml/XmlWriter.cxx | 2 |
1 files changed, 1 insertions, 1 deletions
diff --git a/tools/source/xml/XmlWriter.cxx b/tools/source/xml/XmlWriter.cxx index 424b13c67b01..f49c312bd133 100644 --- a/tools/source/xml/XmlWriter.cxx +++ b/tools/source/xml/XmlWriter.cxx @@ -140,7 +140,7 @@ void XmlWriter::attribute(const char* name, std::u16string_view value) attribute(name, OUStringToOString(value, RTL_TEXTENCODING_UTF8)); } -void XmlWriter::attribute(const char* name, const sal_Int32 aNumber) +void XmlWriter::attribute(const char* name, const sal_Int64 aNumber) { attribute(name, OString::number(aNumber)); } |