summaryrefslogtreecommitdiff
path: root/vcl/source/gdi/graphictools.cxx
diff options
context:
space:
mode:
authorNoel Grandin <noel.grandin@collabora.co.uk>2021-09-05 15:54:52 +0200
committerNoel Grandin <noel.grandin@collabora.co.uk>2021-09-06 20:53:01 +0200
commit81f6842a7d03f5b93ddcece64ef252cc9adf4350 (patch)
tree47d56a1475c11f28664266654e19709422bfa12b /vcl/source/gdi/graphictools.cxx
parentf8cf0d2cb4e5e18f48d6b3bfbc7d0e72e7ed5190 (diff)
clang-tidy:readability-redundant-member-init
Change-Id: I51f4e8affac41023110042b534a915f096ccd0c5 Reviewed-on: https://gerrit.libreoffice.org/c/core/+/121692 Tested-by: Jenkins Reviewed-by: Noel Grandin <noel.grandin@collabora.co.uk>
Diffstat (limited to 'vcl/source/gdi/graphictools.cxx')
-rw-r--r--vcl/source/gdi/graphictools.cxx11
1 files changed, 2 insertions, 9 deletions
diff --git a/vcl/source/gdi/graphictools.cxx b/vcl/source/gdi/graphictools.cxx
index aaff941a3507..1a2442d1b2d2 100644
--- a/vcl/source/gdi/graphictools.cxx
+++ b/vcl/source/gdi/graphictools.cxx
@@ -29,15 +29,11 @@ SvtGraphicFill::Transform::Transform()
}
SvtGraphicStroke::SvtGraphicStroke() :
- maPath(),
- maStartArrow(),
- maEndArrow(),
mfTransparency(),
mfStrokeWidth(),
maCapType(),
maJoinType(),
- mfMiterLimit( 3.0 ),
- maDashArray()
+ mfMiterLimit( 3.0 )
{
}
@@ -161,20 +157,17 @@ SvStream& ReadSvtGraphicStroke( SvStream& rIStm, SvtGraphicStroke& rClass )
}
SvtGraphicFill::SvtGraphicFill() :
- maPath(),
maFillColor( COL_BLACK ),
mfTransparency(),
maFillRule(),
maFillType(),
- maFillTransform(),
mbTiling( false ),
maHatchType(),
maHatchColor( COL_BLACK ),
maGradientType(),
maGradient1stColor( COL_BLACK ),
maGradient2ndColor( COL_BLACK ),
- maGradientStepCount( gradientStepsInfinite ),
- maFillGraphic()
+ maGradientStepCount( gradientStepsInfinite )
{
}