coverity#1251171 Missing break in switch

Change-Id: Iefdeecc9fb2032d171cc2a353fe160dcd92050b2
This commit is contained in:
Norbert Thiebaud
2014-11-07 19:05:11 -06:00
parent c989f5e0e1
commit 169e1058d5

View File

@@ -696,8 +696,10 @@ Reference< XSpellAlternatives > SpellCheckerDispatcher::spell_Impl(
break;
case CAPTYPE_ALLCAP:
aProposalList.Prepend( pCharClass->uppercase(aAddRplcTxt) );
break;
default:
aProposalList.Prepend( aAddRplcTxt );
/* can't happen because of if ct == above */
break;
}
}
}