summaryrefslogtreecommitdiff
path: root/cppu
diff options
context:
space:
mode:
authorStephan Bergmann <sbergman@redhat.com>2015-08-31 08:04:07 +0200
committerStephan Bergmann <sbergman@redhat.com>2015-08-31 08:04:07 +0200
commitb03b8c8c0ccf642efd706267a3d232d2c3de3850 (patch)
tree3f93b69d94356be38a325da300a261ee60465191 /cppu
parent8106bfcdf3ae8409c24a7c40672bb244037f923e (diff)
loplugin:stringconstant: OUStringBuffer: appendAscii -> append
Change-Id: I22808f7740a9a936deb9160b24fe4634f8613823
Diffstat (limited to 'cppu')
-rw-r--r--cppu/source/typelib/static_types.cxx2
1 files changed, 1 insertions, 1 deletions
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() );