summaryrefslogtreecommitdiff
path: root/sw
diff options
context:
space:
mode:
authorLuboš Luňák <l.lunak@suse.cz>2013-05-27 15:39:02 +0200
committerLuboš Luňák <l.lunak@suse.cz>2013-05-27 15:39:19 +0200
commit6a2df328ded9771e3589c4f123ab64048279690f (patch)
treeb9211704611af9425746d370840191f2013fd5b5 /sw
parent183eedf58862d7ab69746ad65b5487af99a2b650 (diff)
fix backport (OUString::number -> valueOf)
Change-Id: I19920a19543a5dde1761711a736090e56c3254f6
Diffstat (limited to 'sw')
-rw-r--r--sw/source/filter/ww8/wrtw8sty.cxx2
1 files changed, 1 insertions, 1 deletions
diff --git a/sw/source/filter/ww8/wrtw8sty.cxx b/sw/source/filter/ww8/wrtw8sty.cxx
index b0371ffbefaa..36ee09bd5784 100644
--- a/sw/source/filter/ww8/wrtw8sty.cxx
+++ b/sw/source/filter/ww8/wrtw8sty.cxx
@@ -549,7 +549,7 @@ void MSWordStyles::OutputStyle( SwFmt* pFmt, sal_uInt16 nPos )
if (!clash)
break;
aName = aBaseName;
- aName += OUString::number(++nSuffix);
+ aName += OUString::valueOf(sal_Int32(++nSuffix));
}
}