Kaydet (Commit) 9cb77ae1 authored tarafından Caolán McNamara's avatar Caolán McNamara

coverity#982649 Missing break in switch

Change-Id: I25ffff8576aca6891060283c55eff7125a9d4681
üst 0c5d6e65
...@@ -3011,6 +3011,7 @@ SvxFrameDirection MakeDirection(sal_uInt16 nCode, bool bIsBiDi) ...@@ -3011,6 +3011,7 @@ SvxFrameDirection MakeDirection(sal_uInt16 nCode, bool bIsBiDi)
{ {
default: default:
OSL_ENSURE(eDir == 4, "unknown direction code, maybe it's a bitfield"); OSL_ENSURE(eDir == 4, "unknown direction code, maybe it's a bitfield");
//fall-through
case 3: case 3:
eDir = bIsBiDi ? FRMDIR_HORI_RIGHT_TOP : FRMDIR_HORI_LEFT_TOP; // #i38158# - Consider RTL tables eDir = bIsBiDi ? FRMDIR_HORI_RIGHT_TOP : FRMDIR_HORI_LEFT_TOP; // #i38158# - Consider RTL tables
break; break;
......
Markdown is supported
0% or
You are about to add 0 people to the discussion. Proceed with caution.
Finish editing this message first!
Please register or to comment