summaryrefslogtreecommitdiff
path: root/include/basegfx/range
diff options
context:
space:
mode:
authorNoel Grandin <noel.grandin@collabora.co.uk>2020-05-29 11:34:54 +0200
committerNoel Grandin <noel.grandin@collabora.co.uk>2020-05-29 13:46:26 +0200
commit6f6f1680ec35b1616c2fc54e5ee8c3b85edf333b (patch)
tree5ec6cfdde2c0c848416155d1d8cab72a3254525e /include/basegfx/range
parent8581d880f8aa8c2be15c875db291cebbb42841c7 (diff)
loplugin:simplifybool in hwpfilter..lotuswordpro
Change-Id: Iedfd492c963eb89fe75fdd73cae630e7e1dae119 Reviewed-on: https://gerrit.libreoffice.org/c/core/+/95100 Tested-by: Jenkins Reviewed-by: Noel Grandin <noel.grandin@collabora.co.uk>
Diffstat (limited to 'include/basegfx/range')
-rw-r--r--include/basegfx/range/basicrange.hxx2
1 files changed, 1 insertions, 1 deletions
diff --git a/include/basegfx/range/basicrange.hxx b/include/basegfx/range/basicrange.hxx
index 429f31957bcc..99d7b02c0bef 100644
--- a/include/basegfx/range/basicrange.hxx
+++ b/include/basegfx/range/basicrange.hxx
@@ -119,7 +119,7 @@ namespace basegfx
}
else
{
- return !((rRange.mnMaximum < mnMinimum) || (rRange.mnMinimum > mnMaximum));
+ return (rRange.mnMaximum >= mnMinimum) && (rRange.mnMinimum <= mnMaximum);
}
}
}