From 7dc223d4888fc6766aa4fb8327ffe6606cedd63e Mon Sep 17 00:00:00 2001 From: Mitchell Livingston Date: Wed, 23 Jan 2008 20:57:07 +0000 Subject: [PATCH] make group sorting on Tiger consistent with Leopard's --- macosx/Controller.m | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/macosx/Controller.m b/macosx/Controller.m index 91ff211c0..a3d35e291 100644 --- a/macosx/Controller.m +++ b/macosx/Controller.m @@ -1724,7 +1724,7 @@ void sleepCallBack(void * controller, io_service_t y, natural_t messageType, voi if (![NSApp isOnLeopardOrBetter] && [fDefaults boolForKey: @"SortByGroup"]) { NSSortDescriptor * groupDescriptor = [[[NSSortDescriptor alloc] initWithKey: @"groupOrderValue" - ascending: asc] autorelease]; + ascending: YES] autorelease]; NSMutableArray * temp = [[NSMutableArray alloc] initWithCapacity: [descriptors count]+1]; [temp addObject: groupDescriptor];