summaryrefslogtreecommitdiff
path: root/framework/source/uifactory/factoryconfiguration.cxx
diff options
context:
space:
mode:
authorStephan Bergmann <sbergman@redhat.com>2015-08-31 08:03:15 +0200
committerStephan Bergmann <sbergman@redhat.com>2015-08-31 08:03:15 +0200
commite9b75064158a9482d79a123319ad0fe8c497e40a (patch)
treed6ed41177bc5682addc6cbf218bd51f533e640f7 /framework/source/uifactory/factoryconfiguration.cxx
parent2cef646fc19add099d3da7ef46865390e7ca7b16 (diff)
loplugin:stringconstant: OUStringBuffer: appendAscii -> append
Change-Id: Iadb6e16a7aca322a78a82ae1a52f5d085b300efc
Diffstat (limited to 'framework/source/uifactory/factoryconfiguration.cxx')
-rw-r--r--framework/source/uifactory/factoryconfiguration.cxx2
1 files changed, 1 insertions, 1 deletions
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();
}