diff options
author | Yan Li <yanli@infradead.org> | 2009-11-05 11:50:34 +0800 |
---|---|---|
committer | Yan Li <yanli@infradead.org> | 2009-11-05 11:50:34 +0800 |
commit | df1f9b3b33de886c5b9a63b0ee6e722bfea4b2e0 (patch) | |
tree | e5d12251978944e33a477d8d818c4f7feb96b7e8 /composer/e-composer-private.h | |
parent | ca509c991bdf8009f1e359d5b283788bb7f94cc5 (diff) | |
download | gsoc2013-evolution-df1f9b3b33de886c5b9a63b0ee6e722bfea4b2e0.tar.gz gsoc2013-evolution-df1f9b3b33de886c5b9a63b0ee6e722bfea4b2e0.tar.zst gsoc2013-evolution-df1f9b3b33de886c5b9a63b0ee6e722bfea4b2e0.zip |
Bug #596027: In Anjal, although invalid mail address warning popup, mail's tab closed automatically
A new field "mail_sent" is added to the Composer to indicate whether the
mail is sent successfully or not. This is needed by Anjal to know
whether it can destroy the composer or not.
Diffstat (limited to 'composer/e-composer-private.h')
-rw-r--r-- | composer/e-composer-private.h | 9 |
1 files changed, 9 insertions, 0 deletions
diff --git a/composer/e-composer-private.h b/composer/e-composer-private.h index 3288f0bcca..71ced95df1 100644 --- a/composer/e-composer-private.h +++ b/composer/e-composer-private.h @@ -1,3 +1,5 @@ +/* -*- Mode: C; tab-width: 8; indent-tabs-mode: t; c-basic-offset: 8 -*- */ + /* * This program is free software; you can redistribute it and/or * modify it under the terms of the GNU Lesser General Public @@ -114,6 +116,13 @@ struct _EMsgComposerPrivate { CamelMimeMessage *redirect; gboolean is_from_message; + + /* The mail composed has been sent. This bit will be set when + the mail passed sanity checking and is sent out, which + indicates that the composer can be destroyed. This bit can + be set/get by using API + e_msg_composer_{set,get}_mail_sent(). */ + gboolean mail_sent; }; void e_composer_private_init (EMsgComposer *composer); |