diff options
author | Noel Grandin <noel.grandin@collabora.co.uk> | 2017-12-06 15:02:40 +0200 |
---|---|---|
committer | Noel Grandin <noel.grandin@collabora.co.uk> | 2017-12-07 07:19:59 +0100 |
commit | c947a25b3a785f8d43160671f79e3bb503dfb1ae (patch) | |
tree | 5617da65af355bb2122cd7a09097eff62f4c4b43 /basegfx | |
parent | f7a57f3a1b3bf357b8dd9401b6d5d2525497967e (diff) |
loplugin:countusersofdefaultparams in basctl..basegfx
Change-Id: I515acfb9de1f6dff1de94a60055c5b600e5e5241
Reviewed-on: https://gerrit.libreoffice.org/45957
Tested-by: Jenkins <ci@libreoffice.org>
Reviewed-by: Noel Grandin <noel.grandin@collabora.co.uk>
Diffstat (limited to 'basegfx')
-rw-r--r-- | basegfx/source/inc/hommatrixtemplate.hxx | 2 | ||||
-rw-r--r-- | basegfx/source/polygon/b2dtrapezoid.cxx | 2 |
2 files changed, 2 insertions, 2 deletions
diff --git a/basegfx/source/inc/hommatrixtemplate.hxx b/basegfx/source/inc/hommatrixtemplate.hxx index 08c5b538f995..b30ca3b1ba3b 100644 --- a/basegfx/source/inc/hommatrixtemplate.hxx +++ b/basegfx/source/inc/hommatrixtemplate.hxx @@ -46,7 +46,7 @@ namespace basegfx { } - explicit ImplMatLine(sal_uInt16 nRow, ImplMatLine< RowSize >* pToBeCopied = nullptr) + explicit ImplMatLine(sal_uInt16 nRow, ImplMatLine< RowSize >* pToBeCopied) { if(pToBeCopied) { diff --git a/basegfx/source/polygon/b2dtrapezoid.cxx b/basegfx/source/polygon/b2dtrapezoid.cxx index 76f4700c2b79..0916099a8c4c 100644 --- a/basegfx/source/polygon/b2dtrapezoid.cxx +++ b/basegfx/source/polygon/b2dtrapezoid.cxx @@ -98,7 +98,7 @@ namespace basegfx TrDeEdgeEntry( const B2DPoint* pStart, const B2DPoint* pEnd, - sal_uInt32 nSortValue = 0) + sal_uInt32 nSortValue) : TrDeSimpleEdge(pStart, pEnd), mnSortValue(nSortValue) { |