summaryrefslogtreecommitdiff
path: root/include/basegfx/utils
diff options
context:
space:
mode:
authorNoel Grandin <noel.grandin@collabora.co.uk>2021-08-27 15:26:05 +0200
committerNoel Grandin <noel.grandin@collabora.co.uk>2021-08-27 21:24:20 +0200
commit8024118d5c9ac964e35e8c4163ca14a5cd78cc3d (patch)
tree8dd3ef5a8f61723fc3bf3e1d8c5f37a0204bc825 /include/basegfx/utils
parent707ac13a3f700c8e4a7f08bdcd5d5321d0a28bc5 (diff)
clang-tidy:readability-redundant-member-init
Change-Id: Ibeff6e5cbc20ab86b1e9cb96292acb340849ede3 Reviewed-on: https://gerrit.libreoffice.org/c/core/+/121149 Tested-by: Jenkins Reviewed-by: Noel Grandin <noel.grandin@collabora.co.uk>
Diffstat (limited to 'include/basegfx/utils')
-rw-r--r--include/basegfx/utils/gradienttools.hxx5
1 files changed, 1 insertions, 4 deletions
diff --git a/include/basegfx/utils/gradienttools.hxx b/include/basegfx/utils/gradienttools.hxx
index 331e2998b32f..e3d816394b54 100644
--- a/include/basegfx/utils/gradienttools.hxx
+++ b/include/basegfx/utils/gradienttools.hxx
@@ -66,9 +66,7 @@ namespace basegfx
public:
ODFGradientInfo()
- : maTextureTransform(),
- maBackTextureTransform(),
- mfAspectRatio(1.0),
+ : mfAspectRatio(1.0),
mnSteps(0)
{
}
@@ -78,7 +76,6 @@ namespace basegfx
double fAspectRatio,
sal_uInt32 nSteps)
: maTextureTransform(rTextureTransform),
- maBackTextureTransform(),
mfAspectRatio(fAspectRatio),
mnSteps(nSteps)
{