diff options
author | Noel Grandin <noel@peralex.com> | 2016-04-13 08:28:50 +0200 |
---|---|---|
committer | Noel Grandin <noel@peralex.com> | 2016-04-13 13:27:50 +0200 |
commit | 2d72addff24ddab4842e2660062a58ccfd9cd0d3 (patch) | |
tree | 4f0f7d1c993b41c912d2f94ba1fdf00ffc66763b /include/basegfx/tools | |
parent | 7573abfdef5b02f37d3bb7040a282f13e791101c (diff) |
loplugin:passstuffbyref in basegfx
Change-Id: Ia7fc22152af2facf3134d9e0975cfb9608b2e931
Diffstat (limited to 'include/basegfx/tools')
-rw-r--r-- | include/basegfx/tools/unopolypolygon.hxx | 2 |
1 files changed, 1 insertions, 1 deletions
diff --git a/include/basegfx/tools/unopolypolygon.hxx b/include/basegfx/tools/unopolypolygon.hxx index 5dd0e00c6154..e4a2206dada8 100644 --- a/include/basegfx/tools/unopolypolygon.hxx +++ b/include/basegfx/tools/unopolypolygon.hxx @@ -87,7 +87,7 @@ namespace unotools sal_Int32 nNumberOfPoints ) const; /// Get cow copy of internal polygon. not thread-safe outside this object. - B2DPolyPolygon getPolyPolygonUnsafe() const + const B2DPolyPolygon& getPolyPolygonUnsafe() const { return maPolyPoly; } |