summaryrefslogtreecommitdiffstats
path: root/basegfx/source/vector/b2dvector.cxx
diff options
context:
space:
mode:
authorNoel Grandin <noel.grandin@collabora.co.uk>2020-04-14 14:54:45 +0200
committerNoel Grandin <noel.grandin@collabora.co.uk>2020-04-14 16:17:55 +0200
commit14471a694271777440c19916055d659337c0fb8d (patch)
tree50f889a9cee6caa123501a40a06d3b1a2030bf41 /basegfx/source/vector/b2dvector.cxx
parentloplugin:flatten in filter (diff)
downloadcore-14471a694271777440c19916055d659337c0fb8d.tar.gz
core-14471a694271777440c19916055d659337c0fb8d.zip
loplugin:buriedassign in b*
Change-Id: Ic20f46105a30b54bc5a991b4070e6c8edb15376e Reviewed-on: https://gerrit.libreoffice.org/c/core/+/92189 Tested-by: Jenkins Reviewed-by: Noel Grandin <noel.grandin@collabora.co.uk>
Diffstat (limited to 'basegfx/source/vector/b2dvector.cxx')
-rw-r--r--basegfx/source/vector/b2dvector.cxx3
1 files changed, 2 insertions, 1 deletions
diff --git a/basegfx/source/vector/b2dvector.cxx b/basegfx/source/vector/b2dvector.cxx
index a9223175e4ee..1ad51a9b5a4c 100644
--- a/basegfx/source/vector/b2dvector.cxx
+++ b/basegfx/source/vector/b2dvector.cxx
@@ -161,7 +161,8 @@ namespace basegfx
B2DVector operator*( const B2DHomMatrix& rMat, const B2DVector& rVec )
{
B2DVector aRes( rVec );
- return aRes*=rMat;
+ aRes *= rMat;
+ return aRes;
}
B2VectorContinuity getContinuity(const B2DVector& rBackVector, const B2DVector& rForwardVector )