From e9b75064158a9482d79a123319ad0fe8c497e40a Mon Sep 17 00:00:00 2001 From: Stephan Bergmann Date: Mon, 31 Aug 2015 08:03:15 +0200 Subject: loplugin:stringconstant: OUStringBuffer: appendAscii -> append Change-Id: Iadb6e16a7aca322a78a82ae1a52f5d085b300efc --- framework/source/uifactory/factoryconfiguration.cxx | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) (limited to 'framework/source/uifactory/factoryconfiguration.cxx') diff --git a/framework/source/uifactory/factoryconfiguration.cxx b/framework/source/uifactory/factoryconfiguration.cxx index ca432e11e303..2a7da9943082 100644 --- a/framework/source/uifactory/factoryconfiguration.cxx +++ b/framework/source/uifactory/factoryconfiguration.cxx @@ -47,7 +47,7 @@ namespace framework OUString getHashKeyFromStrings( const OUString& aCommandURL, const OUString& aModuleName ) { OUStringBuffer aKey( aCommandURL ); - aKey.appendAscii( "-" ); + aKey.append( "-" ); aKey.append( aModuleName ); return aKey.makeStringAndClear(); } -- cgit