From cfb2d0fe2f38d112e901c20e6ac8e04cdfde08aa Mon Sep 17 00:00:00 2001 From: =?UTF-8?q?Caol=C3=A1n=20McNamara?= Date: Thu, 6 Mar 2014 13:39:54 +0000 Subject: [PATCH] coverity#1190351 Missing break in switch it's been like this since the initial checkin of 2000, so I got to assume it's intentional Change-Id: Ifc1300c193f2ddbc3f9ab978464199432430fd8b --- sw/source/core/layout/fly.cxx | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/sw/source/core/layout/fly.cxx b/sw/source/core/layout/fly.cxx index 5d0aede3b8a5..38db766f8118 100644 --- a/sw/source/core/layout/fly.cxx +++ b/sw/source/core/layout/fly.cxx @@ -1036,7 +1036,7 @@ void SwFlyFrm::_UpdateAttr( const SfxPoolItem *pOld, const SfxPoolItem *pNew, else if ( GetPrevLink() ) SwFlyFrm::UnchainFrames( GetPrevLink(), this ); } - + //fall-through default: bClear = false; }