diff options
author | Eike Rathke <erack@redhat.com> | 2014-07-09 19:16:19 +0200 |
---|---|---|
committer | Eike Rathke <erack@redhat.com> | 2014-07-09 19:24:59 +0200 |
commit | fea6f83df8d2183b108695217bc4ff7a93e942c9 (patch) | |
tree | 06dcdf9068894d66fc93d393255f7a5cd7e9b126 /sc | |
parent | f8226e87b446d96a3803df46d9b786c233d1e1f5 (diff) |
resolved fdo#62250 absent value cell values are not NaN, set to 0.0
Change-Id: I41459d72adbaa8f6c0c7c22447f6eba5eb8be3e1
Diffstat (limited to 'sc')
-rw-r--r-- | sc/source/filter/xml/xmlcelli.cxx | 6 |
1 files changed, 6 insertions, 0 deletions
diff --git a/sc/source/filter/xml/xmlcelli.cxx b/sc/source/filter/xml/xmlcelli.cxx index 5a2e3aa174f0..e2ac747035eb 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. |