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

coverity#1213149 Missing break in switch

Change-Id: I4978c8d36052119637acdda8121a511936a81cea
üst 5ff1c499
......@@ -2267,7 +2267,9 @@ void SwContentTree::ExecCommand(sal_uInt16 nCmd, bool bModifier)
switch( nCmd )
{
case FN_ITEM_DOWN:
case FN_ITEM_UP: nMove = true;
case FN_ITEM_UP:
nMove = true;
//fall-through
case FN_ITEM_LEFT:
case FN_ITEM_RIGHT:
if( !GetWrtShell()->GetView().GetDocShell()->IsReadOnly() &&
......
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