loplugin:stringconstant: OUStringBuffer: appendAscii -> append

Change-Id: I68b02ad101c4c2165b4618ed5d97cbffc2c43d2d
This commit is contained in:
Stephan Bergmann
2015-08-31 08:04:12 +02:00
parent b03b8c8c0c
commit 7bff36d45d
33 changed files with 272 additions and 272 deletions

View File

@@ -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() );