1
0
mirror of https://github.com/moparisthebest/k-9 synced 2024-11-27 19:52:17 -05:00

Make it possible to populate a MessageInfoHolder without a FolderInfoHolder

This commit is contained in:
Jesse Vincent 2009-12-27 16:53:09 +00:00
parent fe67f0a40c
commit 4cec247699

View File

@ -2121,6 +2121,12 @@ public class MessageList
this.selected = false;
}
public MessageInfoHolder(Message m, Folder folder)
{
this();
populate(m, new FolderInfoHolder(folder));
}
public MessageInfoHolder(Message m, FolderInfoHolder folder)
{
this();