diff options
author | Noel Grandin <noel.grandin@collabora.co.uk> | 2022-04-29 11:06:33 +0200 |
---|---|---|
committer | Noel Grandin <noel.grandin@collabora.co.uk> | 2022-05-01 08:30:18 +0200 |
commit | 5200a73627d13e2997f81b53f61e143e77e328ee (patch) | |
tree | f95c8346d061ecd0ad33d574895d18e169662785 /cpputools/source | |
parent | b90d3d316dd9c720c83180b31f6bbd7003fead78 (diff) |
use more string_view in various
found by examining uses of OUString::copy() for likely places
Change-Id: I6ff20e7b273ad6005410b82719183c1122f8c018
Reviewed-on: https://gerrit.libreoffice.org/c/core/+/133617
Tested-by: Jenkins
Reviewed-by: Noel Grandin <noel.grandin@collabora.co.uk>
Diffstat (limited to 'cpputools/source')
-rw-r--r-- | cpputools/source/unoexe/unoexe.cxx | 6 |
1 files changed, 3 insertions, 3 deletions
diff --git a/cpputools/source/unoexe/unoexe.cxx b/cpputools/source/unoexe/unoexe.cxx index 31d6d6bdfac2..f8e5aa12d492 100644 --- a/cpputools/source/unoexe/unoexe.cxx +++ b/cpputools/source/unoexe/unoexe.cxx @@ -171,14 +171,14 @@ static Reference< XInterface > loadComponent( Reference< XImplementationLoader > xLoader; - OUString aExt( rLocation.copy( nDot +1 ) ); + std::u16string_view aExt( rLocation.subView( nDot +1 ) ); - if (aExt == "dll" || aExt == "exe" || aExt == "dylib" || aExt == "so") + if (aExt == u"dll" || aExt == u"exe" || aExt == u"dylib" || aExt == u"so") { createInstance( xLoader, xContext, "com.sun.star.loader.SharedLibrary" ); } - else if (aExt == "jar" || aExt == "class") + else if (aExt == u"jar" || aExt == u"class") { createInstance( xLoader, xContext, "com.sun.star.loader.Java" ); |