diff options
author | Caolán McNamara <caolanm@redhat.com> | 2018-08-11 17:20:10 +0100 |
---|---|---|
committer | Caolán McNamara <caolanm@redhat.com> | 2018-08-11 21:09:55 +0200 |
commit | 5262ec68f36216cdca9be87b3b2e126d724b69c5 (patch) | |
tree | 02cc33c8e0b86db9bc57c0ce152bab5321c0be68 /sd/source/ui/animations | |
parent | 12ea892df9ca1691c406b4c98f996456e3b69307 (diff) |
set copy_paste_error to false rather than intentional
Change-Id: I152482ef594c286d3c2a94cab62feff49bbf79fa
Reviewed-on: https://gerrit.libreoffice.org/58884
Tested-by: Jenkins
Reviewed-by: Caolán McNamara <caolanm@redhat.com>
Tested-by: Caolán McNamara <caolanm@redhat.com>
Diffstat (limited to 'sd/source/ui/animations')
-rw-r--r-- | sd/source/ui/animations/CustomAnimationPane.cxx | 4 |
1 files changed, 2 insertions, 2 deletions
diff --git a/sd/source/ui/animations/CustomAnimationPane.cxx b/sd/source/ui/animations/CustomAnimationPane.cxx index 50bf2231a20b..dea81a9cd6c9 100644 --- a/sd/source/ui/animations/CustomAnimationPane.cxx +++ b/sd/source/ui/animations/CustomAnimationPane.cxx @@ -2343,7 +2343,7 @@ void CustomAnimationPane::moveSelection( bool bUp ) CustomAnimationEffectPtr pEffect = (*aIter++); EffectSequence::iterator aUpEffectPos( pSequence->find( pEffect ) ); - // coverity[copy_paste_error] - this is correct, checking if it exists + // coverity[copy_paste_error : FALSE] - this is correct, checking if it exists if( aUpEffectPos != rEffectSequence.end() ) { EffectSequence::iterator aInsertPos( rEffectSequence.erase( aUpEffectPos ) ); @@ -2374,7 +2374,7 @@ void CustomAnimationPane::moveSelection( bool bUp ) CustomAnimationEffectPtr pEffect = (*aIter++); EffectSequence::iterator aDownEffectPos( pSequence->find( pEffect ) ); - // coverity[copy_paste_error] - this is correct, checking if it exists + // coverity[copy_paste_error : FALSE] - this is correct, checking if it exists if( aDownEffectPos != rEffectSequence.end() ) { EffectSequence::iterator aInsertPos( rEffectSequence.erase( aDownEffectPos ) ); |