From 4e69127246028f72eee6279e9a810bb865ce654c Mon Sep 17 00:00:00 2001 From: Eike Rathke Date: Wed, 9 Jul 2014 19:16:19 +0200 Subject: [PATCH 001/137] resolved fdo#62250 absent value cell values are not NaN, set to 0.0 Change-Id: I41459d72adbaa8f6c0c7c22447f6eba5eb8be3e1 (cherry picked from commit fea6f83df8d2183b108695217bc4ff7a93e942c9) Reviewed-on: https://gerrit.libreoffice.org/10176 Reviewed-by: Kohei Yoshida Tested-by: Kohei Yoshida --- sc/source/filter/xml/xmlcelli.cxx | 6 ++++++ 1 file changed, 6 insertions(+) diff --git a/sc/source/filter/xml/xmlcelli.cxx b/sc/source/filter/xml/xmlcelli.cxx index 41e6111..a3321c2 100644 --- a/sc/source/filter/xml/xmlcelli.cxx +++ b/sc/source/filter/xml/xmlcelli.cxx @@ -1151,6 +1151,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. -- 1.9.3