diff options
author | Caolán McNamara <caolanm@redhat.com> | 2014-03-31 10:58:02 +0100 |
---|---|---|
committer | Caolán McNamara <caolanm@redhat.com> | 2014-03-31 11:19:11 +0100 |
commit | 4df99bdc5b4a10c9904c2ac792f9c08152419a8e (patch) | |
tree | ebd01096a2d40efefeccdd45b7d96d78a9441021 | |
parent | 2a88ab6642dd7d42eff651a0ac9d9d9428a7fc00 (diff) |
coverity#704352 Logically dead code
Change-Id: I97cc143071951bc24b8b0f9c6780e40a3b2bdc61
-rw-r--r-- | sw/source/core/doc/tblrwcl.cxx | 15 |
1 files changed, 0 insertions, 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 ); |