Kaydet (Commit) ba4276ef authored tarafından Stephan Bergmann's avatar Stephan Bergmann

loplugin:stringconstant: OUStringBuffer: appendAscii -> append

Change-Id: I349e1b9e3ea81c0684c6234497b6d44b47666b09
üst 9320b960
......@@ -4854,16 +4854,16 @@ RTLFUNC(Partition)
// appending the leading spaces for the lowervalue
for ( sal_Int32 i= (nLen - nLen1) ; i > 0; --i )
{
aRetStr.appendAscii(" ");
aRetStr.append(" ");
}
}
aRetStr.append( aLowerValue ).appendAscii(":");
aRetStr.append( aLowerValue ).append(":");
if( nLen > nLen2 )
{
// appending the leading spaces for the uppervalue
for ( sal_Int32 i= (nLen - nLen2) ; i > 0; --i )
{
aRetStr.appendAscii(" ");
aRetStr.append(" ");
}
}
aRetStr.append( aUpperValue );
......
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