Changeset 378
- Timestamp:
- 09/19/08 15:01:31 (4 months ago)
- Files:
Legend:
- Unmodified
- Added
- Removed
- Modified
- Copied
- Moved
jasko.tim.lisp/src/jasko/tim/lisp/views/repl/PackageDialog.java
r334 r378 303 303 304 304 private void displayInfo(){ 305 int sel = lstEnums.getSelectionIndex(); 306 if( sel < 0 ){ 305 if( lstEnums.getSelectionIndex() < 0 ){ 307 306 lblLoaded.setVisible(false); 308 307 txtDoc.setText(""); … … 312 311 return; 313 312 } 314 String pkg = packages.get(sel);313 String pkg = (String)lstEnums.getSelection()[0]; 315 314 String txt = infoMap.get(pkg); 316 315 if( txt != null ){
