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

loplugin:stringconstant: OUStringBuffer: appendAscii -> append

Change-Id: I22808f7740a9a936deb9160b24fe4634f8613823
üst 8106bfcd
...@@ -307,7 +307,7 @@ void SAL_CALL typelib_static_sequence_type_init( ...@@ -307,7 +307,7 @@ void SAL_CALL typelib_static_sequence_type_init(
if (! *ppRef) if (! *ppRef)
{ {
OUStringBuffer aBuf( 32 ); OUStringBuffer aBuf( 32 );
aBuf.appendAscii( "[]" ); aBuf.append( "[]" );
aBuf.append( pElementType->pTypeName ); aBuf.append( pElementType->pTypeName );
OUString aTypeName( aBuf.makeStringAndClear() ); OUString aTypeName( aBuf.makeStringAndClear() );
......
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