diff options
author | Caolán McNamara <caolanm@redhat.com> | 2014-10-24 11:46:14 +0100 |
---|---|---|
committer | Caolán McNamara <caolanm@redhat.com> | 2014-10-24 13:43:10 +0100 |
commit | 7fd9b8268f87831e2728b5def34cc5e97ed16ab0 (patch) | |
tree | da61aa8254f9156f01ab8f41ad5a9cb5304f58da /sw | |
parent | 6f32261fcffa8a2cc7e8ef29d805a7318d7b90f8 (diff) |
coverity#1212506 no need for ? : here
Change-Id: I771a59979ffa628c93421d65b2078292e104eeed
Diffstat (limited to 'sw')
-rw-r--r-- | sw/source/core/layout/paintfrm.cxx | 2 |
1 files changed, 1 insertions, 1 deletions
diff --git a/sw/source/core/layout/paintfrm.cxx b/sw/source/core/layout/paintfrm.cxx index 57cbeb7753ac..8c177fc0f6b9 100644 --- a/sw/source/core/layout/paintfrm.cxx +++ b/sw/source/core/layout/paintfrm.cxx @@ -6648,7 +6648,7 @@ void SwFrm::PaintBackground( const SwRect &rRect, const SwPageFrm *pPage, } } else - bLowMode = bLowerMode ? sal_True : sal_False; + bLowMode = bLowerMode; } // OD 05.09.2002 #102912# |