diff options
author | Noel Grandin <noel@peralex.com> | 2014-02-07 14:31:44 +0200 |
---|---|---|
committer | Noel Grandin <noel@peralex.com> | 2014-02-07 15:33:27 +0200 |
commit | e4fcf23f3ddae7d0ee1f0e3e20f472c65f568487 (patch) | |
tree | 311a98cc594e2c4015c7c6e470de208039a9a324 /sw | |
parent | 972f3a812d56abdc171066feaaa9ffa40ce75c3e (diff) |
coverity#708856 unused pointer value
Change-Id: I9f093e10d222b500079c5b38ea673e9d014b6870
Diffstat (limited to 'sw')
-rw-r--r-- | sw/source/core/layout/tabfrm.cxx | 2 |
1 files changed, 1 insertions, 1 deletions
diff --git a/sw/source/core/layout/tabfrm.cxx b/sw/source/core/layout/tabfrm.cxx index b1f0c9696b79..3971506c13ad 100644 --- a/sw/source/core/layout/tabfrm.cxx +++ b/sw/source/core/layout/tabfrm.cxx @@ -1751,7 +1751,7 @@ static bool lcl_NoPrev( const SwFrm& rFrm ) { const SwFrm* pSct = rFrm.GetUpper(); if ( pSct && pSct->IsColBodyFrm() && - (pSct = pSct->GetUpper()->GetUpper())->IsSctFrm() ) + pSct->GetUpper()->GetUpper()->IsSctFrm() ) { const SwFrm* pPrevCol = rFrm.GetUpper()->GetUpper()->GetPrev(); if ( pPrevCol ) |