summaryrefslogtreecommitdiff
path: root/sw/source/filter/ww8/ww8par.cxx
diff options
context:
space:
mode:
Diffstat (limited to 'sw/source/filter/ww8/ww8par.cxx')
-rw-r--r--sw/source/filter/ww8/ww8par.cxx4
1 files changed, 2 insertions, 2 deletions
diff --git a/sw/source/filter/ww8/ww8par.cxx b/sw/source/filter/ww8/ww8par.cxx
index 65fe6c460bc9..4cb36f651284 100644
--- a/sw/source/filter/ww8/ww8par.cxx
+++ b/sw/source/filter/ww8/ww8par.cxx
@@ -1829,7 +1829,7 @@ long SwWW8ImplReader::Read_And(WW8PLCFManResult* pRes)
sal_uInt32 nTagBkmk = SVBT32ToUInt32(pDescri->ITagBkmk);
if (nTagBkmk != 0xFFFFFFFF)
{
- sName = OUString::valueOf(sal_Int32(nTagBkmk));
+ sName = OUString::number(nTagBkmk);
int nAtnIndex = GetAnnotationIndex(nTagBkmk);
if (nAtnIndex != -1)
{
@@ -5860,7 +5860,7 @@ sal_Bool SwMSDffManager::GetOLEStorageName(long nOLEId, OUString& rStorageName,
if( bRet )
{
rStorageName = OUString('_');
- rStorageName += OUString::valueOf(nPictureId);
+ rStorageName += OUString::number(nPictureId);
rSrcStorage = rReader.pStg->OpenSotStorage(OUString(
SL::aObjectPool));
if (!rReader.mpDocShell)
23:03 +0200'>2019-08-13Drop MSVC workaround from 2002Stephan Bergmann 2019-08-13Use existing SAL_MIN/MAX_...Stephan Bergmann 2019-08-12Fix typosAndrea Gelmini 2019-08-09Fix typoAndrea Gelmini 2019-07-31Improved loplugin:stringconstant (now that GCC 7 supports it): stocStephan Bergmann 2019-07-22Simplify Sequence iterations in shell..svgioArkadiy Illarionov 2019-07-21loplugin:referencecasting in slideshow..svtoolsNoel Grandin