diff options
author | Noel Grandin <noel.grandin@collabora.co.uk> | 2016-09-12 12:56:25 +0200 |
---|---|---|
committer | Noel Grandin <noelgrandin@gmail.com> | 2016-09-13 06:14:41 +0000 |
commit | 6dd4905a7ac93a48dc87358da3ba0a8078bbb6cf (patch) | |
tree | 222912540273ca0601f61b682f6fd2b919e7aa4a /svx | |
parent | a46076245ca6a85712f51187553f5abd3f0aa79a (diff) |
loplugin:constantparam in dbaccess..editeng
Change-Id: I1d0dc3d89933d86cd229e503b350fccc1523dedc
Reviewed-on: https://gerrit.libreoffice.org/28833
Tested-by: Jenkins <ci@libreoffice.org>
Reviewed-by: Noel Grandin <noelgrandin@gmail.com>
Diffstat (limited to 'svx')
-rw-r--r-- | svx/source/sdr/contact/viewcontactofe3dextrude.cxx | 2 | ||||
-rw-r--r-- | svx/source/sdr/contact/viewcontactofe3dlathe.cxx | 2 |
2 files changed, 2 insertions, 2 deletions
diff --git a/svx/source/sdr/contact/viewcontactofe3dextrude.cxx b/svx/source/sdr/contact/viewcontactofe3dextrude.cxx index be77f9e1b0e1..55fe8fd7b5ab 100644 --- a/svx/source/sdr/contact/viewcontactofe3dextrude.cxx +++ b/svx/source/sdr/contact/viewcontactofe3dextrude.cxx @@ -74,7 +74,7 @@ namespace sdr const drawinglayer::primitive3d::Primitive3DReference xReference( new drawinglayer::primitive3d::SdrExtrudePrimitive3D( aWorldTransform, aTextureSize, aAttribute, *pSdr3DObjectAttribute, - aPolyPolygon, fDepth, fDiagonal, fBackScale, bSmoothNormals, true, bSmoothLids, + aPolyPolygon, fDepth, fDiagonal, fBackScale, bSmoothNormals, bSmoothLids, bCharacterMode, bCloseFront, bCloseBack)); xRetval = { xReference }; diff --git a/svx/source/sdr/contact/viewcontactofe3dlathe.cxx b/svx/source/sdr/contact/viewcontactofe3dlathe.cxx index e7ffa94f8455..7418cbde07c8 100644 --- a/svx/source/sdr/contact/viewcontactofe3dlathe.cxx +++ b/svx/source/sdr/contact/viewcontactofe3dlathe.cxx @@ -90,7 +90,7 @@ namespace sdr aWorldTransform, aTextureSize, aAttribute, *pSdr3DObjectAttribute, aPolyPolygon, nHorizontalSegments, nVerticalSegments, fDiagonal, fBackScale, fRotation, - bSmoothNormals, true, bSmoothLids, bCharacterMode, bCloseFront, bCloseBack)); + bSmoothNormals, bSmoothLids, bCharacterMode, bCloseFront, bCloseBack)); xRetval = { xReference }; return xRetval; |