diff options
author | Noel Grandin <noel.grandin@collabora.co.uk> | 2021-08-27 15:26:05 +0200 |
---|---|---|
committer | Noel Grandin <noel.grandin@collabora.co.uk> | 2021-08-27 21:24:20 +0200 |
commit | 8024118d5c9ac964e35e8c4163ca14a5cd78cc3d (patch) | |
tree | 8dd3ef5a8f61723fc3bf3e1d8c5f37a0204bc825 /include/basegfx/utils | |
parent | 707ac13a3f700c8e4a7f08bdcd5d5321d0a28bc5 (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.hxx | 5 |
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) { |