diff options
author | Noel Grandin <noel.grandin@collabora.co.uk> | 2020-08-06 13:32:43 +0200 |
---|---|---|
committer | Noel Grandin <noel.grandin@collabora.co.uk> | 2020-08-14 18:03:06 +0200 |
commit | e67657d5211f6e95ddf8bd621108608573b00d5d (patch) | |
tree | 66724101dbd95721714bd40fcb4861663432774c /basegfx | |
parent | 186def8f48e273c3a3b4d23b3ab2efd0d8664731 (diff) |
loplugin:simplifybool more
look for expressions like
!(a && !b)
which can be expanded out
Change-Id: I72515a9638762b050f9a258c08da39ebfa2ef8e7
Reviewed-on: https://gerrit.libreoffice.org/c/core/+/100579
Tested-by: Jenkins
Reviewed-by: Noel Grandin <noel.grandin@collabora.co.uk>
Diffstat (limited to 'basegfx')
-rw-r--r-- | basegfx/source/color/bcolormodifier.cxx | 10 | ||||
-rw-r--r-- | basegfx/source/matrix/b3dhommatrix.cxx | 2 |
2 files changed, 6 insertions, 6 deletions
diff --git a/basegfx/source/color/bcolormodifier.cxx b/basegfx/source/color/bcolormodifier.cxx index c943658f05eb..5cf2a5a86c80 100644 --- a/basegfx/source/color/bcolormodifier.cxx +++ b/basegfx/source/color/bcolormodifier.cxx @@ -208,11 +208,11 @@ namespace basegfx mfBlueOff(0.0), mbUseIt(false) { - if(!(!basegfx::fTools::equalZero(mfRed) - || !basegfx::fTools::equalZero(mfGreen) - || !basegfx::fTools::equalZero(mfBlue) - || !basegfx::fTools::equalZero(mfLuminance) - || !basegfx::fTools::equalZero(mfContrast))) + if(basegfx::fTools::equalZero(mfRed) + && basegfx::fTools::equalZero(mfGreen) + && basegfx::fTools::equalZero(mfBlue) + && basegfx::fTools::equalZero(mfLuminance) + && basegfx::fTools::equalZero(mfContrast)) return; // calculate slope diff --git a/basegfx/source/matrix/b3dhommatrix.cxx b/basegfx/source/matrix/b3dhommatrix.cxx index 2a56c7a28795..1382ff3c4a0f 100644 --- a/basegfx/source/matrix/b3dhommatrix.cxx +++ b/basegfx/source/matrix/b3dhommatrix.cxx @@ -149,7 +149,7 @@ namespace basegfx void B3DHomMatrix::rotate(double fAngleX,double fAngleY,double fAngleZ) { - if(!(!fTools::equalZero(fAngleX) || !fTools::equalZero(fAngleY) || !fTools::equalZero(fAngleZ))) + if(fTools::equalZero(fAngleX) && fTools::equalZero(fAngleY) && fTools::equalZero(fAngleZ)) return; if(!fTools::equalZero(fAngleX)) |