comparison dwtx/jface/text/contentassist/CompletionProposalPopup.d @ 192:c3583c6ec027

Added missing default cases for switch statements
author Frank Benoit <benoit@tionex.de>
date Mon, 03 Nov 2008 22:52:26 +0100
parents 1a5b8f8129df
children
comparison
equal deleted inserted replaced
191:1ef729510ed6 192:c3583c6ec027
185 case SELECT_PREVIOUS: 185 case SELECT_PREVIOUS:
186 selectionIndex-= 1; 186 selectionIndex-= 1;
187 if (selectionIndex < 0) 187 if (selectionIndex < 0)
188 selectionIndex= itemCount - 1; 188 selectionIndex= itemCount - 1;
189 break; 189 break;
190 default:
190 } 191 }
191 selectProposal(selectionIndex, false); 192 selectProposal(selectionIndex, false);
192 return null; 193 return null;
193 } 194 }
194 195