From b03b8c8c0ccf642efd706267a3d232d2c3de3850 Mon Sep 17 00:00:00 2001 From: Stephan Bergmann Date: Mon, 31 Aug 2015 08:04:07 +0200 Subject: loplugin:stringconstant: OUStringBuffer: appendAscii -> append Change-Id: I22808f7740a9a936deb9160b24fe4634f8613823 --- cppu/source/typelib/static_types.cxx | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) (limited to 'cppu') diff --git a/cppu/source/typelib/static_types.cxx b/cppu/source/typelib/static_types.cxx index 446671afd09a..5d4a3de01926 100644 --- a/cppu/source/typelib/static_types.cxx +++ b/cppu/source/typelib/static_types.cxx @@ -307,7 +307,7 @@ void SAL_CALL typelib_static_sequence_type_init( if (! *ppRef) { OUStringBuffer aBuf( 32 ); - aBuf.appendAscii( "[]" ); + aBuf.append( "[]" ); aBuf.append( pElementType->pTypeName ); OUString aTypeName( aBuf.makeStringAndClear() ); -- cgit