summaryrefslogtreecommitdiff
path: root/sw/source/filter/html/htmlftn.cxx
diff options
context:
space:
mode:
Diffstat (limited to 'sw/source/filter/html/htmlftn.cxx')
-rw-r--r--sw/source/filter/html/htmlftn.cxx6
1 files changed, 3 insertions, 3 deletions
diff --git a/sw/source/filter/html/htmlftn.cxx b/sw/source/filter/html/htmlftn.cxx
index f0f2f6c5ac0f..f543fd279fae 100644
--- a/sw/source/filter/html/htmlftn.cxx
+++ b/sw/source/filter/html/htmlftn.cxx
@@ -51,20 +51,20 @@ static sal_Int32 lcl_html_getNextPart( OUString& rPart, const OUString& rContent
{
case '\\':
if( bQuoted )
- rPart += OUStringLiteral1( c );
+ rPart += OUStringChar( c );
bQuoted = !bQuoted;
break;
case ';':
if( bQuoted )
- rPart += OUStringLiteral1( c );
+ rPart += OUStringChar( c );
else
bDone = true;
bQuoted = false;
break;
default:
- rPart += OUStringLiteral1( c );
+ rPart += OUStringChar( c );
bQuoted = false;
break;
}