diff options
author | Stephan Bergmann <sbergman@redhat.com> | 2019-02-20 13:52:51 +0100 |
---|---|---|
committer | Stephan Bergmann <sbergman@redhat.com> | 2019-02-20 17:18:31 +0100 |
commit | 16a614c77ace3f44684efd9c964c52ddbd5f5cf9 (patch) | |
tree | 243a972fe3bace2665c78b2a4c67df932c8b6627 /xmloff/source/transform/FrameOOoTContext.cxx | |
parent | caeaa7b90e42c60ec407e1f0cd5b5db2b30f55d2 (diff) |
More loplugin:simplifybool
...found with (trunk) libc++ on macOS, where the standard library iterator
implementations are apparently sufficiently different to libstdc++ to find more
cases of !(... == ...) vs. ... != ...
Change-Id: Ia3861406aa584c7b1d33f47448190b5cf2e770f7
Reviewed-on: https://gerrit.libreoffice.org/68089
Tested-by: Jenkins
Reviewed-by: Stephan Bergmann <sbergman@redhat.com>
Diffstat (limited to 'xmloff/source/transform/FrameOOoTContext.cxx')
-rw-r--r-- | xmloff/source/transform/FrameOOoTContext.cxx | 4 |
1 files changed, 2 insertions, 2 deletions
diff --git a/xmloff/source/transform/FrameOOoTContext.cxx b/xmloff/source/transform/FrameOOoTContext.cxx index 0176964f7711..da04ae424d2d 100644 --- a/xmloff/source/transform/FrameOOoTContext.cxx +++ b/xmloff/source/transform/FrameOOoTContext.cxx @@ -73,7 +73,7 @@ void XMLFrameOOoTransformerContext::StartElement( XMLTransformerActions::key_type aKey( nPrefix, aLocalName ); XMLTransformerActions::const_iterator aIter = pActions->find( aKey ); - if( !(aIter == pActions->end() ) ) + if( aIter != pActions->end() ) { const OUString& rAttrValue = xAttrList->getValueByIndex( i ); switch( (*aIter).second.m_nActionType ) @@ -110,7 +110,7 @@ rtl::Reference<XMLTransformerContext> XMLFrameOOoTransformerContext::CreateChild XMLTransformerActions::key_type aKey( nPrefix, rLocalName ); XMLTransformerActions::const_iterator aIter = pActions->find( aKey ); - if( !(aIter == pActions->end()) ) + if( aIter != pActions->end() ) { switch( (*aIter).second.m_nActionType ) { |