summaryrefslogtreecommitdiff
path: root/vcl
diff options
context:
space:
mode:
authorNoel Grandin <noel.grandin@collabora.co.uk>2021-10-10 14:40:50 +0200
committerNoel Grandin <noel.grandin@collabora.co.uk>2021-10-10 19:46:01 +0200
commiteea7af10d9ff1407c90abc233f6ea470fa832b1c (patch)
tree5f339e9ade51a1dff1a5ec866d1375c3ca287f90 /vcl
parentf4ac99f717d7365fc7d1f0adbf72a9bb4d4c8db5 (diff)
loplugin:moveparam in basegfx
Change-Id: I73414e94358114ff0d475f13855db8c4c493b6f5 Reviewed-on: https://gerrit.libreoffice.org/c/core/+/123334 Tested-by: Jenkins Reviewed-by: Noel Grandin <noel.grandin@collabora.co.uk>
Diffstat (limited to 'vcl')
-rw-r--r--vcl/skia/gdiimpl.cxx4
1 files changed, 2 insertions, 2 deletions
diff --git a/vcl/skia/gdiimpl.cxx b/vcl/skia/gdiimpl.cxx
index c580471a9608..00bbbe6660c3 100644
--- a/vcl/skia/gdiimpl.cxx
+++ b/vcl/skia/gdiimpl.cxx
@@ -1070,8 +1070,8 @@ void SkiaSalGraphicsImpl::checkPendingDrawing()
{
for (basegfx::B2DPolyPolygon& p : polygons)
roundPolygonPoints(p);
- performDrawPolyPolygon(basegfx::utils::mergeToSinglePolyPolygon(polygons), transparency,
- true);
+ performDrawPolyPolygon(basegfx::utils::mergeToSinglePolyPolygon(std::move(polygons)),
+ transparency, true);
}
}
}