Ignore:
Timestamp:
2008-05-23T11:32:01+12:00 (16 years ago)
Author:
ak19
Message:

displayBrowseResults() does mode.setRoot(newRoot) at the end of the for loop instead of throughout

File:
1 edited

Legend:

Unmodified
Added
Removed
  • other-projects/trunk/gs3-webservices-democlient/src/GS3DemoClient/org/greenstone/gs3client/BrowseDisplay.java

    r15222 r15661  
    321321                    = new DefaultMutableTreeNode(childNodes[i]);
    322322                newRoot.add(child);
    323                 model.setRoot(newRoot);
    324323                if(childNodes[i].hasChildren)
    325324                    child.add(new DefaultMutableTreeNode(null));
     
    327326                    // has a root: the root classifierNode
    328327            }
     328            model.setRoot(newRoot);
    329329        }
    330330    }
Note: See TracChangeset for help on using the changeset viewer.