From e4fcf23f3ddae7d0ee1f0e3e20f472c65f568487 Mon Sep 17 00:00:00 2001 From: Noel Grandin Date: Fri, 7 Feb 2014 14:31:44 +0200 Subject: coverity#708856 unused pointer value Change-Id: I9f093e10d222b500079c5b38ea673e9d014b6870 --- sw/source/core/layout/tabfrm.cxx | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) (limited to 'sw') 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 ) -- cgit