summaryrefslogtreecommitdiff
path: root/stoc
diff options
context:
space:
mode:
authorStephan Bergmann <sbergman@redhat.com>2015-08-31 08:01:46 +0200
committerStephan Bergmann <sbergman@redhat.com>2015-08-31 08:01:46 +0200
commit5ee844f1b8b9c48e7c6df6513592b9e85e2fafed (patch)
treeab16010a8a0f31c32cabf71b9a8622b90b535318 /stoc
parente807dafa5ba9247479f925f96474d88d58450be9 (diff)
loplugin:stringconstant: OUStringBuffer: appendAscii -> append
Change-Id: Iec2bc6669bdc5c405de4f361f70cad569c33c0c1
Diffstat (limited to 'stoc')
-rw-r--r--stoc/source/implementationregistration/implreg.cxx4
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() );
}