comparison dwtx/jface/viewers/CellNavigationStrategy.d @ 123:ddeafd007ce4

Fix: missing switch default. Thx yidabu for reporting.
author Frank Benoit <benoit@tionex.de>
date Sat, 16 Aug 2008 13:24:47 +0200
parents b6c35faf97c8
children
comparison
equal deleted inserted replaced
122:9d0585bcb7aa 123:ddeafd007ce4
142 case DWT.ARROW_RIGHT: 142 case DWT.ARROW_RIGHT:
143 if (currentSelectedCell !is null) { 143 if (currentSelectedCell !is null) {
144 return currentSelectedCell.getNeighbor(ViewerCell.RIGHT, true); 144 return currentSelectedCell.getNeighbor(ViewerCell.RIGHT, true);
145 } 145 }
146 break; 146 break;
147 default:
147 } 148 }
148 149
149 return null; 150 return null;
150 } 151 }
151 152