diff options
author | Noel Grandin <noel.grandin@collabora.co.uk> | 2019-02-26 12:07:24 +0200 |
---|---|---|
committer | Noel Grandin <noel.grandin@collabora.co.uk> | 2019-02-27 07:35:11 +0100 |
commit | 4d502ef3559f53d75e4ee3c85b90ea36816049e8 (patch) | |
tree | 6fc23dab1ded365962295c5a3fdf498c726853f3 /sc/source/ui | |
parent | 19240f625f8bd7b772481abc8e678d7b0fadd921 (diff) |
loplugin:simplifybool improve search for negated operator
Change-Id: Id6ac35fefa5c3e1f64c222713791e849b3cb4d34
Reviewed-on: https://gerrit.libreoffice.org/68379
Reviewed-by: Noel Grandin <noel.grandin@collabora.co.uk>
Tested-by: Noel Grandin <noel.grandin@collabora.co.uk>
Diffstat (limited to 'sc/source/ui')
-rw-r--r-- | sc/source/ui/attrdlg/tabpages.cxx | 2 |
1 files changed, 1 insertions, 1 deletions
diff --git a/sc/source/ui/attrdlg/tabpages.cxx b/sc/source/ui/attrdlg/tabpages.cxx index 8e1bf7572f18..d974baf6bcf2 100644 --- a/sc/source/ui/attrdlg/tabpages.cxx +++ b/sc/source/ui/attrdlg/tabpages.cxx @@ -127,7 +127,7 @@ bool ScTabPageProtection::FillItemSet( SfxItemSet* rCoreAttrs ) if ( bTriEnabled ) bAttrsChanged = true; // DontCare -> properly value else - bAttrsChanged = !pOldItem || !( aProtAttr == *static_cast<const ScProtectionAttr*>(pOldItem) ); + bAttrsChanged = !pOldItem || aProtAttr != *static_cast<const ScProtectionAttr*>(pOldItem); } if ( bAttrsChanged ) |