summaryrefslogtreecommitdiff
path: root/sc/source/filter/xml/XMLCalculationSettingsContext.cxx
diff options
context:
space:
mode:
authorArmin Weiss <aw@openoffice.org>2001-02-27 13:27:40 +0000
committerArmin Weiss <aw@openoffice.org>2001-02-27 13:27:40 +0000
commite4e014e1413de21655cab5172fc6cc50022f9b42 (patch)
tree6c190a89701e3f4f5dd0452982d655ac8db074c6 /sc/source/filter/xml/XMLCalculationSettingsContext.cxx
parent40ffd19b6e6f2a1dc8e73ab2472df92c75064b32 (diff)
Changed usage of SvXMLUnitConverter::convertNumber(...) to use
SvXMLUnitConverter::convertDouble(...) where doubles are used
Diffstat (limited to 'sc/source/filter/xml/XMLCalculationSettingsContext.cxx')
-rw-r--r--sc/source/filter/xml/XMLCalculationSettingsContext.cxx6
1 files changed, 3 insertions, 3 deletions
diff --git a/sc/source/filter/xml/XMLCalculationSettingsContext.cxx b/sc/source/filter/xml/XMLCalculationSettingsContext.cxx
index 8c62262cf1ee..254965c51dce 100644
--- a/sc/source/filter/xml/XMLCalculationSettingsContext.cxx
+++ b/sc/source/filter/xml/XMLCalculationSettingsContext.cxx
@@ -2,9 +2,9 @@
*
* $RCSfile: XMLCalculationSettingsContext.cxx,v $
*
- * $Revision: 1.3 $
+ * $Revision: 1.4 $
*
- * last change: $Author: sab $ $Date: 2001-02-15 09:29:26 $
+ * last change: $Author: aw $ $Date: 2001-02-27 14:16:13 $
*
* The Contents of this file are made available subject to the terms of
* either of the following licenses
@@ -287,7 +287,7 @@ ScXMLIterationContext::ScXMLIterationContext( ScXMLImport& rImport,
else if (aLocalName.compareToAscii(sXML_maximum_difference) == 0)
{
double fDif;
- GetScImport().GetMM100UnitConverter().convertNumber(fDif, sValue);
+ GetScImport().GetMM100UnitConverter().convertDouble(fDif, sValue);
pCalcSet->SetIterationEpsilon(fDif);
}
}