summaryrefslogtreecommitdiff
diff options
context:
space:
mode:
-rw-r--r--sw/source/filter/html/htmlatr.cxx4
1 files changed, 2 insertions, 2 deletions
diff --git a/sw/source/filter/html/htmlatr.cxx b/sw/source/filter/html/htmlatr.cxx
index 4ef9f7fe89bc..25581eb3ce2d 100644
--- a/sw/source/filter/html/htmlatr.cxx
+++ b/sw/source/filter/html/htmlatr.cxx
@@ -2522,8 +2522,8 @@ Writer& OutHTML_SwTxtNode( Writer& rWrt, const SwCntntNode& rNode )
// #i120442#: if c is outside the unicode base plane output it as "&#******;"
else if( c > 0xffff)
{
- OUString sOut("&#");
- sOut += OUString::number( (sal_uInt64)c );
+ OString sOut("&#");
+ sOut += OString::number( (sal_uInt64)c );
sOut += ";";
rWrt.Strm() << sOut.getStr();
}