summaryrefslogtreecommitdiff
path: root/sd/source/filter/html/htmlex.cxx
diff options
context:
space:
mode:
Diffstat (limited to 'sd/source/filter/html/htmlex.cxx')
-rw-r--r--sd/source/filter/html/htmlex.cxx4
1 files changed, 2 insertions, 2 deletions
diff --git a/sd/source/filter/html/htmlex.cxx b/sd/source/filter/html/htmlex.cxx
index a51ef5a6a714..1c3bf81f9c55 100644
--- a/sd/source/filter/html/htmlex.cxx
+++ b/sd/source/filter/html/htmlex.cxx
@@ -1994,7 +1994,7 @@ bool HtmlExport::CreateNotesPages()
aStr.AppendAscii( "</body>\r\n</html>" );
OUString aFileName( "note" );
- aFileName += OUString::valueOf(nSdPage);
+ aFileName += OUString(nSdPage);
bOk = WriteHtml( aFileName, true, aStr );
@@ -2062,7 +2062,7 @@ bool HtmlExport::CreateOutlinePages()
aStr.AppendAscii( "</body>\r\n</html>" );
OUString aFileName( "outline" );
- aFileName += OUString::valueOf(nPage);
+ aFileName += OUString::number(nPage);
bOk = WriteHtml( aFileName, true, aStr );
if (mpProgress)