Kaydet (Commit) d7363da2 authored tarafından Noel Grandin's avatar Noel Grandin

fix linux build

after commit 1461ebbb
"expand out ::sax::Converter::convertNumber to OUString::number"

Change-Id: Ie219db074a626b124cc640612e549ec9ac869296
üst 49783285
......@@ -645,7 +645,7 @@ void Converter::convertAngle(OUStringBuffer& rBuffer, sal_Int16 const nAngle)
{
#if 1
// wrong, but backward compatible with OOo/LO < 4.4
rBuffer.append(nAngle);
rBuffer.append(static_cast<sal_Int32>(nAngle));
#else
// maybe in the future... (see other convertAngle)
double fAngle(double(nAngle) / 10.0);
......
Markdown is supported
0% or
You are about to add 0 people to the discussion. Proceed with caution.
Finish editing this message first!
Please register or to comment