summaryrefslogtreecommitdiff
path: root/starmath
diff options
context:
space:
mode:
authorCaolán McNamara <cmc@openoffice.org>2001-02-27 13:55:15 +0000
committerCaolán McNamara <cmc@openoffice.org>2001-02-27 13:55:15 +0000
commita60bec10a2ba73ab6e9447dab4c3c8c6808e8554 (patch)
tree1ae45d51ca0aeffbfe197c56d652fa700d448954 /starmath
parent1c55950bda220587f7746622df37abc8bc75b7ab (diff)
convertNumber magically turned into convertDouble yesterday morning
Diffstat (limited to 'starmath')
-rw-r--r--starmath/source/mathml.cxx16
1 files changed, 8 insertions, 8 deletions
diff --git a/starmath/source/mathml.cxx b/starmath/source/mathml.cxx
index 49ce8f6c16f0..b7d40311976f 100644
--- a/starmath/source/mathml.cxx
+++ b/starmath/source/mathml.cxx
@@ -2,9 +2,9 @@
*
* $RCSfile: mathml.cxx,v $
*
- * $Revision: 1.12 $
+ * $Revision: 1.13 $
*
- * last change: $Author: cmc $ $Date: 2001-02-19 08:31:16 $
+ * last change: $Author: cmc $ $Date: 2001-02-27 14:55:15 $
*
* The Contents of this file are made available subject to the terms of
* either of the following licenses
@@ -624,7 +624,7 @@ void SmXMLContext_Helper::RetrieveAttrs(const uno::Reference<
sXML_italic)));
break;
case XML_TOK_FONTSIZE:
- SvXMLUnitConverter::convertNumber(nFontSize,sValue);
+ SvXMLUnitConverter::convertDouble(nFontSize,sValue);
rContext.GetSmImport().GetMM100UnitConverter().
setXMLMeasureUnit(MAP_POINT);
if (-1 == sValue.indexOf(OUString(
@@ -794,7 +794,7 @@ void SmXMLStyleContext_Impl::StartElement(const uno::Reference<
sXML_italic)));
break;
case XML_TOK_FONTSIZE:
- SvXMLUnitConverter::convertNumber(nFontSize,sValue);
+ SvXMLUnitConverter::convertDouble(nFontSize,sValue);
GetSmImport().GetMM100UnitConverter().
setXMLMeasureUnit(MAP_POINT);
if (-1 == sValue.indexOf(OUString(
@@ -3208,17 +3208,17 @@ void SmXMLExport::ExportFont(const SmNode *pNode, int nLevel)
switch(pFontNode->GetSizeType())
{
case FNTSIZ_MULTIPLY:
- SvXMLUnitConverter::convertNumber(sStrBuf,
+ SvXMLUnitConverter::convertDouble(sStrBuf,
static_cast<double>(aFrac*Fraction(100.00)));
sStrBuf.append(static_cast<sal_Unicode>('%'));
break;
case FNTSIZ_DIVIDE:
- SvXMLUnitConverter::convertNumber(sStrBuf,
+ SvXMLUnitConverter::convertDouble(sStrBuf,
static_cast<double>(Fraction(100.00)/aFrac));
sStrBuf.append(static_cast<sal_Unicode>('%'));
break;
case FNTSIZ_ABSOLUT:
- SvXMLUnitConverter::convertNumber(sStrBuf,
+ SvXMLUnitConverter::convertDouble(sStrBuf,
static_cast<double>(aFrac));
sStrBuf.append(
OUString(RTL_CONSTASCII_USTRINGPARAM(sXML_unit_pt)));
@@ -3242,7 +3242,7 @@ void SmXMLExport::ExportFont(const SmNode *pNode, int nLevel)
double mytest = static_cast<double>(aTemp);
mytest = SolarMath::Round(mytest,1);
- SvXMLUnitConverter::convertNumber(sStrBuf,mytest);
+ SvXMLUnitConverter::convertDouble(sStrBuf,mytest);
sStrBuf.append(OUString(
RTL_CONSTASCII_USTRINGPARAM(sXML_unit_pt)));
}