summaryrefslogtreecommitdiff
path: root/starmath/source/mathtype.cxx
diff options
context:
space:
mode:
Diffstat (limited to 'starmath/source/mathtype.cxx')
-rw-r--r--starmath/source/mathtype.cxx4
1 files changed, 2 insertions, 2 deletions
diff --git a/starmath/source/mathtype.cxx b/starmath/source/mathtype.cxx
index b911b5f4a890..2aa85599f99b 100644
--- a/starmath/source/mathtype.cxx
+++ b/starmath/source/mathtype.cxx
@@ -1848,7 +1848,7 @@ sal_Bool MathType::HandleSize(sal_Int16 nLstSize,sal_Int16 nDefSize, int &rSetSi
{
nLastSize = nCurSize;
APPEND(rRet," size ");
- rRet += String::CreateFromInt32(-nLstSize/32);
+ rRet += OUString::number(-nLstSize/32);
rRet += '{';
bRet=true;
rSetSize++;
@@ -1877,7 +1877,7 @@ sal_Bool MathType::HandleSize(sal_Int16 nLstSize,sal_Int16 nDefSize, int &rSetSi
{
nLastSize = nCurSize;
APPEND(rRet," size ");
- rRet += String::CreateFromInt32(nLstSize);
+ rRet += OUString::number(nLstSize);
rRet += '{';
bRet=true;
rSetSize++;