Kaydet (Commit) 647fb29f authored tarafından Andrzej J.R. Hunt's avatar Andrzej J.R. Hunt

WaE: Unused return value of OUString.

Seems to be a leftover of the String->OUString conversion?

Change-Id: I5ecbdbc0131894f5240b472d3981e69178b503c5
üst 174caa87
......@@ -573,13 +573,13 @@ static void lcl_html_OutSectionStartTag( SwHTMLWriter& rHTMLWrt,
sal_Int32 nPos = aSection.indexOf( '%' );
while( nPos != -1 )
{
aSection.replaceAt(nPos, 1, "%25");
aSection = aSection.replaceAt(nPos, 1, "%25");
nPos = aSection.indexOf( '%', nPos+3 );
}
nPos = aSection.indexOf( cDelim );
while( nPos != -1 )
{
aSection.replaceAt(nPos, 1, "%FF" );
aSection = aSection.replaceAt(nPos, 1, "%FF" );
nPos = aSection.indexOf( cDelim, nPos+3 );
}
HTMLOutFuncs::Out_String( rHTMLWrt.Strm(), aSection,
......
Markdown is supported
0% or
You are about to add 0 people to the discussion. Proceed with caution.
Finish editing this message first!
Please register or to comment