Kaydet (Commit) 169e1058 authored tarafından Norbert Thiebaud's avatar Norbert Thiebaud

coverity#1251171 Missing break in switch

Change-Id: Iefdeecc9fb2032d171cc2a353fe160dcd92050b2
üst c989f5e0
...@@ -696,8 +696,10 @@ Reference< XSpellAlternatives > SpellCheckerDispatcher::spell_Impl( ...@@ -696,8 +696,10 @@ Reference< XSpellAlternatives > SpellCheckerDispatcher::spell_Impl(
break; break;
case CAPTYPE_ALLCAP: case CAPTYPE_ALLCAP:
aProposalList.Prepend( pCharClass->uppercase(aAddRplcTxt) ); aProposalList.Prepend( pCharClass->uppercase(aAddRplcTxt) );
break;
default: default:
aProposalList.Prepend( aAddRplcTxt ); /* can't happen because of if ct == above */
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