Merge change 25459 into eclair

* changes:
  Fix sort order of MailboxList
This commit is contained in:
Android (Google) Code Review 2009-09-18 00:06:56 -04:00
commit a6888d7448

View File

@ -321,7 +321,7 @@ public class MailboxList extends ListActivity implements OnItemClickListener, On
MailboxList.this.mListAdapter.PROJECTION,
MAILBOX_SELECTION,
new String[] { String.valueOf(mAccountKey) },
MailboxColumns.TYPE);
MailboxColumns.TYPE + "," + MailboxColumns.DISPLAY_NAME);
}
@Override