summaryrefslogtreecommitdiff
path: root/sw/source/filter/html/htmlfly.cxx
diff options
context:
space:
mode:
authorJean-Noël Rouvignac <jn.rouvignac@gmail.com>2013-02-20 00:18:07 +0100
committerMichael Stahl <mstahl@redhat.com>2013-02-22 17:32:12 +0000
commit08603e66f9a994418d4e2a2badee3f5a6b3f7168 (patch)
tree1351699f802c447c2485aa32f427b035c70c2b07 /sw/source/filter/html/htmlfly.cxx
parente904749eb8e1109f9a884b309fad6de5f78ad623 (diff)
fdo#38838 search replace for String::CreateFromInt32().
I ran the following code replace: s/(Uni|Xub)?String\s*::\s*CreateFromInt32/OUString::number/ Change-Id: Ic500593e3a0b593522c9469b18da0145285007da Reviewed-on: https://gerrit.libreoffice.org/2280 Reviewed-by: Michael Stahl <mstahl@redhat.com> Tested-by: Michael Stahl <mstahl@redhat.com>
Diffstat (limited to 'sw/source/filter/html/htmlfly.cxx')
-rw-r--r--sw/source/filter/html/htmlfly.cxx4
1 files changed, 2 insertions, 2 deletions
diff --git a/sw/source/filter/html/htmlfly.cxx b/sw/source/filter/html/htmlfly.cxx
index 9bb0d79a0cad..6ddbdde1d298 100644
--- a/sw/source/filter/html/htmlfly.cxx
+++ b/sw/source/filter/html/htmlfly.cxx
@@ -867,7 +867,7 @@ Writer& OutHTML_Image( Writer& rWrt, const SwFrmFmt &rFrmFmt,
aNameBase.AssignAscii( OOO_STRING_SVTOOLS_HTML_map );
if( !aIMapName.Len() )
(aIMapName = aNameBase)
- += String::CreateFromInt32( rHTMLWrt.nImgMapCnt );
+ += OUString::number( rHTMLWrt.nImgMapCnt );
sal_Bool bFound;
do
@@ -887,7 +887,7 @@ Writer& OutHTML_Image( Writer& rWrt, const SwFrmFmt &rFrmFmt,
{
rHTMLWrt.nImgMapCnt++;
(aIMapName = aNameBase)
- += String::CreateFromInt32( rHTMLWrt.nImgMapCnt );
+ += OUString::number( rHTMLWrt.nImgMapCnt );
}
} while( bFound );