diff options
author | Noel <noelgrandin@gmail.com> | 2020-11-25 08:14:07 +0200 |
---|---|---|
committer | Noel Grandin <noel.grandin@collabora.co.uk> | 2020-11-30 12:32:14 +0100 |
commit | 8332d6d8200e8ca1f22dd98d9373efd5a431d09c (patch) | |
tree | dd45d452202998297b8562743ea6345462304d04 /slideshow/source/inc | |
parent | d05a4cfbdcece491f7385dbeaa7eca03f2fdc1d5 (diff) |
loplugin:stringviewparam include comparisons with string literals
Change-Id: I8ba1214500dddaf413c506a4b82f43d63cda804b
Reviewed-on: https://gerrit.libreoffice.org/c/core/+/106559
Tested-by: Jenkins
Reviewed-by: Noel Grandin <noel.grandin@collabora.co.uk>
Diffstat (limited to 'slideshow/source/inc')
-rw-r--r-- | slideshow/source/inc/shapeimporter.hxx | 4 |
1 files changed, 2 insertions, 2 deletions
diff --git a/slideshow/source/inc/shapeimporter.hxx b/slideshow/source/inc/shapeimporter.hxx index a0ccb1fd44af..5254e0a9feaf 100644 --- a/slideshow/source/inc/shapeimporter.hxx +++ b/slideshow/source/inc/shapeimporter.hxx @@ -97,13 +97,13 @@ public: double getImportedShapesCount() const{ return mnAscendingPrio; } private: bool isSkip( css::uno::Reference<css::beans::XPropertySet> const& xPropSet, - OUString const& shapeType, + std::u16string_view shapeType, css::uno::Reference<css::drawing::XLayer> const& xLayer); ShapeSharedPtr createShape( css::uno::Reference<css::drawing::XShape> const& xCurrShape, css::uno::Reference<css::beans::XPropertySet> const& xPropSet, - OUString const& shapeType ) const; + std::u16string_view shapeType ) const; void importPolygons(css::uno::Reference< css::beans::XPropertySet > const& xPropSet) ; |