Ignore:
Timestamp:
2004-12-17T15:07:36+13:00 (19 years ago)
Author:
mdewsnip
Message:

Tidied up the workspace and collection trees a bit more, in preparation for having special icons for some collection files.

File:
1 edited

Legend:

Unmodified
Added
Removed
  • trunk/gli/src/org/greenstone/gatherer/collection/Collection.java

    r8783 r8846  
    129129    /** Determine the number of documents and folders in this collection. */
    130130    public int getCount() {
    131     return getCount((TreeNode)Gatherer.c_man.getRecordSet().getRoot(), true, true);
     131    return getCount((TreeNode)Gatherer.c_man.getCollectionTreeModel().getRoot(), true, true);
    132132    }
    133133   
    134134    /** Calculates the number of documents in this collection. */
    135135    public int getDocumentCount() {
    136     return getCount((TreeNode)Gatherer.c_man.getRecordSet().getRoot(), false, true);
     136    return getCount((TreeNode)Gatherer.c_man.getCollectionTreeModel().getRoot(), false, true);
    137137    }
    138138   
Note: See TracChangeset for help on using the changeset viewer.