diff options
author | Stephan Bergmann <sbergman@redhat.com> | 2015-08-31 08:01:46 +0200 |
---|---|---|
committer | Stephan Bergmann <sbergman@redhat.com> | 2015-08-31 08:01:46 +0200 |
commit | 5ee844f1b8b9c48e7c6df6513592b9e85e2fafed (patch) | |
tree | ab16010a8a0f31c32cabf71b9a8622b90b535318 | |
parent | e807dafa5ba9247479f925f96474d88d58450be9 (diff) |
loplugin:stringconstant: OUStringBuffer: appendAscii -> append
Change-Id: Iec2bc6669bdc5c405de4f361f70cad569c33c0c1
-rw-r--r-- | stoc/source/implementationregistration/implreg.cxx | 4 |
1 files changed, 2 insertions, 2 deletions
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() ); } |