Merge "Add the starred folder type"

This commit is contained in:
Vikram Aggarwal 2012-04-10 13:00:26 -07:00 committed by Android (Google) Code Review
commit d1241db03e
1 changed files with 1 additions and 0 deletions

View File

@ -2054,6 +2054,7 @@ outer:
+ " WHEN " + Mailbox.TYPE_SENT + " THEN " + UIProvider.FolderType.SENT
+ " WHEN " + Mailbox.TYPE_TRASH + " THEN " + UIProvider.FolderType.TRASH
+ " WHEN " + Mailbox.TYPE_JUNK + " THEN " + UIProvider.FolderType.SPAM
+ " WHEN " + Mailbox.TYPE_STARRED + " THEN " + UIProvider.FolderType.STARRED
+ " ELSE " + UIProvider.FolderType.DEFAULT + " END";
private static final String FOLDER_ICON = "CASE " + MailboxColumns.TYPE