From 5ee844f1b8b9c48e7c6df6513592b9e85e2fafed Mon Sep 17 00:00:00 2001 From: Stephan Bergmann Date: Mon, 31 Aug 2015 08:01:46 +0200 Subject: loplugin:stringconstant: OUStringBuffer: appendAscii -> append Change-Id: Iec2bc6669bdc5c405de4f361f70cad569c33c0c1 --- stoc/source/implementationregistration/implreg.cxx | 4 ++-- 1 file changed, 2 insertions(+), 2 deletions(-) (limited to 'stoc') diff --git a/stoc/source/implementationregistration/implreg.cxx b/stoc/source/implementationregistration/implreg.cxx index 825723bad7a4..6402890fef18 100644 --- a/stoc/source/implementationregistration/implreg.cxx +++ b/stoc/source/implementationregistration/implreg.cxx @@ -1485,9 +1485,9 @@ void ImplementationRegistration::prepareRegister( else { OUStringBuffer buf( 128 ); - buf.appendAscii( "ImplementationRegistration::registerImplementation() - The service " ); + buf.append( "ImplementationRegistration::registerImplementation() - The service " ); buf.append( activatorName ); - buf.appendAscii( " cannot be instantiated\n" ); + buf.append( " cannot be instantiated\n" ); throw CannotRegisterImplementationException( buf.makeStringAndClear() ); } -- cgit