HTML support via WebKitGtk. Closes #3709

This commit is contained in:
Eric Gregory 2012-01-20 17:31:56 -08:00
parent 288bb7702e
commit cb236b6758
10 changed files with 5300 additions and 190 deletions

View file

@ -25,9 +25,11 @@ public class Geary.ComposedEmail : Object {
public RFC822.Subject? subject { get; set; default = null; }
public RFC822.Text? body { get; set; default = null; }
public ComposedEmail(DateTime date, RFC822.MailboxAddresses from) {
public ComposedEmail(DateTime date, RFC822.MailboxAddresses from,
RFC822.MailboxAddresses? to = null) {
this.date = date;
this.from = from;
this.to = to;
}
public ComposedEmail.as_reply(DateTime date, RFC822.MailboxAddresses from, Geary.Email source) {