Changeset 378

Show
Ignore:
Timestamp:
09/19/08 15:01:31 (4 months ago)
Author:
sergey.kol..@gmail.com
Message:

Sergey Kolos:

  • Fixed bug: when using filter in open package dialog displayed help string and links to documentations are wrong.
Files:

Legend:

Unmodified
Added
Removed
Modified
Copied
Moved
  • jasko.tim.lisp/src/jasko/tim/lisp/views/repl/PackageDialog.java

    r334 r378  
    303303         
    304304        private void displayInfo(){ 
    305                 int sel = lstEnums.getSelectionIndex();  
    306                 if( sel < 0 ){ 
     305                if( lstEnums.getSelectionIndex() < 0 ){ 
    307306                        lblLoaded.setVisible(false); 
    308307                        txtDoc.setText(""); 
     
    312311                        return; 
    313312                } 
    314                 String pkg = packages.get(sel)
     313                String pkg = (String)lstEnums.getSelection()[0]
    315314                String txt = infoMap.get(pkg); 
    316315                if( txt != null ){