sc/source/filter/xml/xmlcelli.cxx | 6 ++++++ 1 file changed, 6 insertions(+)
New commits: commit fea6f83df8d2183b108695217bc4ff7a93e942c9 Author: Eike Rathke <er...@redhat.com> Date: Wed Jul 9 19:16:19 2014 +0200 resolved fdo#62250 absent value cell values are not NaN, set to 0.0 Change-Id: I41459d72adbaa8f6c0c7c22447f6eba5eb8be3e1 diff --git a/sc/source/filter/xml/xmlcelli.cxx b/sc/source/filter/xml/xmlcelli.cxx index 5a2e3aa..e2ac747 100644 --- a/sc/source/filter/xml/xmlcelli.cxx +++ b/sc/source/filter/xml/xmlcelli.cxx @@ -1157,6 +1157,12 @@ void ScXMLTableRowCellContext::PutValueCell( const ScAddress& rCurrentPos ) } else //regular value cell { + // fdo#62250 absent values are not NaN, set to 0.0 + // PutValueCell() is called only for a known cell value type, + // bIsEmpty==false in all these cases, no sense to check it here. + if (::rtl::math::isNan( fValue)) + fValue = 0.0; + // #i62435# Initialize the value cell's script type if the default // style's number format is latin-only. If the cell uses a different // format, the script type will be reset when the style is applied. _______________________________________________ Libreoffice-commits mailing list libreoffice-comm...@lists.freedesktop.org http://lists.freedesktop.org/mailman/listinfo/libreoffice-commits