diff options
-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() ); } |