Sorted files caselessly

This commit is contained in:
Jamie Cameron
2007-05-14 18:45:08 +00:00
parent 7bcc82e181
commit 351270dd60
3 changed files with 3 additions and 2 deletions

View File

@@ -25,7 +25,7 @@ public class QuickSort
protected static int compare(RemoteFile a, RemoteFile b) {
long rv = 0;
if (col == 1)
rv = a.name.compareTo(b.name);
rv = a.name.toLowerCase().compareTo(b.name.toLowerCase());
else if (col == 2)
rv = a.size - b.size;
else if (col == 3)