diff options
author | Noel Grandin <noel.grandin@collabora.co.uk> | 2019-04-29 11:18:21 +0200 |
---|---|---|
committer | Noel Grandin <noel.grandin@collabora.co.uk> | 2019-04-30 08:43:51 +0200 |
commit | dd8d5e5795358d732a9f7a8af7c35f662321e332 (patch) | |
tree | 9983c2a5f0bc3f2c29133aa57e4ceb510eb68a11 /stoc | |
parent | 22f2cf3ccc6d0c9ba2c2860735e789d6b3a25f72 (diff) |
improve loplugin:stringconstant
to find more places we can elide the OUString() constructor at call
sites
Change-Id: Ie09f3c61f2c4b4959c97dc98ebcbaf7c51d5d713
Reviewed-on: https://gerrit.libreoffice.org/71514
Tested-by: Jenkins
Reviewed-by: Noel Grandin <noel.grandin@collabora.co.uk>
Diffstat (limited to 'stoc')
-rw-r--r-- | stoc/source/corereflection/crefl.cxx | 8 |
1 files changed, 2 insertions, 6 deletions
diff --git a/stoc/source/corereflection/crefl.cxx b/stoc/source/corereflection/crefl.cxx index a306a0d441c2..040080a3ba7c 100644 --- a/stoc/source/corereflection/crefl.cxx +++ b/stoc/source/corereflection/crefl.cxx @@ -318,9 +318,7 @@ const Mapping & IdlReflectionServiceImpl::getCpp2Uno() MutexGuard aGuard( getMutexAccess() ); if (! _aCpp2Uno.is()) { - _aCpp2Uno = Mapping( - OUString( CPPU_CURRENT_LANGUAGE_BINDING_NAME ), - OUString( UNO_LB_UNO ) ); + _aCpp2Uno = Mapping( CPPU_CURRENT_LANGUAGE_BINDING_NAME, UNO_LB_UNO ); OSL_ENSURE( _aCpp2Uno.is(), "### cannot get c++ to uno mapping!" ); if (! _aCpp2Uno.is()) { @@ -340,9 +338,7 @@ const Mapping & IdlReflectionServiceImpl::getUno2Cpp() MutexGuard aGuard( getMutexAccess() ); if (! _aUno2Cpp.is()) { - _aUno2Cpp = Mapping( - OUString( UNO_LB_UNO ), - OUString( CPPU_CURRENT_LANGUAGE_BINDING_NAME ) ); + _aUno2Cpp = Mapping( UNO_LB_UNO, CPPU_CURRENT_LANGUAGE_BINDING_NAME ); OSL_ENSURE( _aUno2Cpp.is(), "### cannot get uno to c++ mapping!" ); if (! _aUno2Cpp.is()) { |