diff options
Diffstat (limited to 'xmloff')
-rw-r--r-- | xmloff/source/chart/PropertyMaps.cxx | 2 |
1 files changed, 1 insertions, 1 deletions
diff --git a/xmloff/source/chart/PropertyMaps.cxx b/xmloff/source/chart/PropertyMaps.cxx index 60f8fee23610..5e5a70747d1e 100644 --- a/xmloff/source/chart/PropertyMaps.cxx +++ b/xmloff/source/chart/PropertyMaps.cxx @@ -406,7 +406,7 @@ void XMLChartExportPropertyMapper::handleSpecialItem( { // convert from 100th degrees to degrees (double) rProperty.maValue >>= nValue; - double fVal = (double)(nValue) / 100.0; + double fVal = (double)nValue / 100.0; ::sax::Converter::convertDouble( sValueBuffer, fVal ); } break; |