Kaydet (Commit) 5ee844f1 authored tarafından Stephan Bergmann's avatar Stephan Bergmann

loplugin:stringconstant: OUStringBuffer: appendAscii -> append

Change-Id: Iec2bc6669bdc5c405de4f361f70cad569c33c0c1
üst e807dafa
......@@ -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() );
}
......
Markdown is supported
0% or
You are about to add 0 people to the discussion. Proceed with caution.
Finish editing this message first!
Please register or to comment