Bugfix: Fixing ordering for compose view.

Reviewed-by: @FredericJacobs
pull/1/head
Christine Corbett 11 years ago committed by Frederic Jacobs
parent 6b4f339d7e
commit c11c4361eb

@ -398,7 +398,7 @@ void onAddressBookChanged(ABAddressBookRef notifyAddressBook, CFDictionaryRef in
if (firstNameOrdering) {
return [contact1.firstName compare:contact2.firstName];
} else {
return [contact2.lastName compare:contact2.lastName];
return [contact1.lastName compare:contact2.lastName];
}
}];
}

Loading…
Cancel
Save