diff options
author | Noel Grandin <noel.grandin@collabora.co.uk> | 2019-10-14 14:27:57 +0200 |
---|---|---|
committer | Noel Grandin <noel.grandin@collabora.co.uk> | 2019-10-15 14:33:57 +0200 |
commit | f13c6ad5f020a196a0e3aa6f28bda3dc185d465b (patch) | |
tree | f9aaab122974d36c134fb1723ec3c1c8df51eeef /uui/source/iahndl.cxx | |
parent | 9270f74466d0eb841babaa24997f608631c70341 (diff) |
new loplugin:bufferadd
look for OUStringBuffer append sequences that can be turned
into creating an OUString with + operations
Change-Id: Ica840dc096000307b4a105fb4d9ec7588a15ade6
Reviewed-on: https://gerrit.libreoffice.org/80809
Tested-by: Jenkins
Reviewed-by: Noel Grandin <noel.grandin@collabora.co.uk>
Diffstat (limited to 'uui/source/iahndl.cxx')
-rw-r--r-- | uui/source/iahndl.cxx | 6 |
1 files changed, 2 insertions, 4 deletions
diff --git a/uui/source/iahndl.cxx b/uui/source/iahndl.cxx index cd26da12de5d..5b026a4082d9 100644 --- a/uui/source/iahndl.cxx +++ b/uui/source/iahndl.cxx @@ -865,13 +865,11 @@ UUIInteractionHelper::getInteractionHandlerList( uno::Reference< lang::XMultiServiceFactory > xConfigProv = configuration::theDefaultProvider::get( m_xContext ); - OUStringBuffer aFullPath; - aFullPath.append( - "/org.openoffice.ucb.InteractionHandler/InteractionHandlers" ); + OUString aFullPath = "/org.openoffice.ucb.InteractionHandler/InteractionHandlers"; uno::Sequence<uno::Any> aArguments(comphelper::InitAnyPropertySequence( { - {"nodepath", uno::Any(aFullPath.makeStringAndClear())} + {"nodepath", uno::Any(aFullPath)} })); uno::Reference< uno::XInterface > xInterface( |