diff options
author | Noel Grandin <noel.grandin@collabora.co.uk> | 2021-08-31 11:29:47 +0200 |
---|---|---|
committer | Noel Grandin <noel.grandin@collabora.co.uk> | 2021-08-31 14:30:43 +0200 |
commit | 21dbf18064480cade972f50431a7fad6505d6d43 (patch) | |
tree | 8ec695e4a3e34c52f6f674f9bdbd0fb746cc54d9 /include/drawinglayer/primitive2d | |
parent | 5d64720ce7571cb491e8c477e3744e1c19894625 (diff) |
clang-tidy:readability-redundant-member-init
Change-Id: I95918275653714577e2d6728dd3947c7fbb66d8f
Reviewed-on: https://gerrit.libreoffice.org/c/core/+/121360
Tested-by: Jenkins
Reviewed-by: Noel Grandin <noel.grandin@collabora.co.uk>
Diffstat (limited to 'include/drawinglayer/primitive2d')
-rw-r--r-- | include/drawinglayer/primitive2d/primitivetools2d.hxx | 10 |
1 files changed, 1 insertions, 9 deletions
diff --git a/include/drawinglayer/primitive2d/primitivetools2d.hxx b/include/drawinglayer/primitive2d/primitivetools2d.hxx index ec578679adce..97e4f770e389 100644 --- a/include/drawinglayer/primitive2d/primitivetools2d.hxx +++ b/include/drawinglayer/primitive2d/primitivetools2d.hxx @@ -46,8 +46,7 @@ namespace drawinglayer::primitive2d public: /// constructor DiscreteMetricDependentPrimitive2D() - : BufferedDecompositionPrimitive2D(), - mfDiscreteUnit(0.0) + : mfDiscreteUnit(0.0) { } @@ -77,8 +76,6 @@ namespace drawinglayer::primitive2d public: /// constructor ViewportDependentPrimitive2D() - : BufferedDecompositionPrimitive2D(), - maViewport() { } @@ -108,8 +105,6 @@ namespace drawinglayer::primitive2d public: /// constructor ViewTransformationDependentPrimitive2D() - : BufferedDecompositionPrimitive2D(), - maViewTransformation() { } @@ -141,9 +136,6 @@ namespace drawinglayer::primitive2d public: /// constructor ObjectAndViewTransformationDependentPrimitive2D() - : BufferedDecompositionPrimitive2D(), - maViewTransformation(), - maObjectTransformation() { } |