From d6c32cffb5cc81989b4bb4a221a152bbe607bd98 Mon Sep 17 00:00:00 2001 From: Noel Grandin Date: Sun, 19 Apr 2020 09:07:27 +0200 Subject: loplugin:simplifybool extend to expression like !(a < b || c > d) mostly to catch stuff from the flatten work, but I think this looks good in general Change-Id: I7be5b7bcf1f3d9f980c748ba20793965cef957e7 Reviewed-on: https://gerrit.libreoffice.org/c/core/+/92493 Tested-by: Jenkins Reviewed-by: Noel Grandin --- UnoControls/source/controls/progressbar.cxx | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) (limited to 'UnoControls') diff --git a/UnoControls/source/controls/progressbar.cxx b/UnoControls/source/controls/progressbar.cxx index 37ac9e379195..d8c9b889f2b5 100644 --- a/UnoControls/source/controls/progressbar.cxx +++ b/UnoControls/source/controls/progressbar.cxx @@ -221,7 +221,7 @@ void SAL_CALL ProgressBar::setRange ( sal_Int32 nMin, sal_Int32 nMax ) } // assure that m_nValue is within the range - if (!(m_nMinRange < m_nValue && m_nValue < m_nMaxRange)) + if (m_nMinRange >= m_nValue || m_nValue >= m_nMaxRange) m_nValue = m_nMinRange; impl_recalcRange (); -- cgit