Community
Participate
Working Groups
Version: 3.2.0 Build id: I20060413-1718 Due to a wrong comparision (at least it looks so), setting a Comparator, which is recommended in 3.2 over setting a Sorter, is not working at all: public void setComparator(ViewerComparator comparator){ if (this.sorter != sorter){ // <-- Will always be FALSE this.sorter = comparator; refresh(); } } I think the Method should look like: public void setComparator(ViewerComparator comparator){ if (this.sorter != comparator){ this.sorter = comparator; refresh(); } } Ben
*** This bug has been marked as a duplicate of 137849 ***