loplugin:stringconstant: OUStringBuffer: appendAscii -> append
Change-Id: I68b02ad101c4c2165b4618ed5d97cbffc2c43d2d
This commit is contained in:
@@ -646,11 +646,11 @@ com::sun::star::uno::Sequence< Any > parseArray( const OUString & str ) throw( S
|
||||
{
|
||||
|
||||
OUStringBuffer buf;
|
||||
buf.appendAscii( "error during array parsing, didn't expect a } at position " );
|
||||
buf.append( "error during array parsing, didn't expect a } at position " );
|
||||
buf.append( (sal_Int32) i );
|
||||
buf.appendAscii( " ('" );
|
||||
buf.append( " ('" );
|
||||
buf.append( str );
|
||||
buf.appendAscii( "')" );
|
||||
buf.append( "')" );
|
||||
throw SQLException(
|
||||
buf.makeStringAndClear(),
|
||||
Reference< XInterface > (), OUString(), 1, Any() );
|
||||
|
Reference in New Issue
Block a user