From 4df99bdc5b4a10c9904c2ac792f9c08152419a8e Mon Sep 17 00:00:00 2001 From: =?UTF-8?q?Caol=C3=A1n=20McNamara?= Date: Mon, 31 Mar 2014 10:58:02 +0100 Subject: [PATCH] coverity#704352 Logically dead code Change-Id: I97cc143071951bc24b8b0f9c6780e40a3b2bdc61 --- sw/source/core/doc/tblrwcl.cxx | 15 --------------- 1 file changed, 15 deletions(-) diff --git a/sw/source/core/doc/tblrwcl.cxx b/sw/source/core/doc/tblrwcl.cxx index 90a7e721db68..45a9fccc9a84 100644 --- a/sw/source/core/doc/tblrwcl.cxx +++ b/sw/source/core/doc/tblrwcl.cxx @@ -4255,22 +4255,7 @@ bool SwTable::SetRowHeight( SwTableBox& rAktBox, sal_uInt16 eType, { // First test if we have room at all if( bBigger ) - { bRet = true; -// What's up with Top, Table in a Frame or Header/Footer with fixed width?? - if( !bRet ) - { - // Then call itself recursively; only with another mode (proportional) - TblChgMode eOld = eTblChgMode; - eTblChgMode = TBLFIX_CHGPROP; - - bRet = SetRowHeight( rAktBox, eType, nAbsDiff, - nRelDiff, ppUndo ); - - eTblChgMode = eOld; - return bRet; - } - } else bRet = (*fnSelLine)( (*pLines)[ nBaseLinePos ], aParam, nAbsDiff, true );