diff options
author | Jon Trowbridge <trow@ximian.com> | 2001-08-30 05:21:22 +0800 |
---|---|---|
committer | Jon Trowbridge <trow@src.gnome.org> | 2001-08-30 05:21:22 +0800 |
commit | 8c22a4d62ecd7f626aad583192e361e3658c72ee (patch) | |
tree | ccdf62abef16fd0b6dc44101363d676673b55c00 /composer/e-msg-composer-hdrs.h | |
parent | 7ca1797bbc3d3cddd56a4da17e211273b5815ece (diff) | |
download | gsoc2013-evolution-8c22a4d62ecd7f626aad583192e361e3658c72ee.tar.gz gsoc2013-evolution-8c22a4d62ecd7f626aad583192e361e3658c72ee.tar.zst gsoc2013-evolution-8c22a4d62ecd7f626aad583192e361e3658c72ee.zip |
Pass in FALSE as the 'sending' arg to e_msg_composer_get_message.
2001-08-29 Jon Trowbridge <trow@ximian.com>
* e-msg-composer.c (e_msg_composer_get_message_draft): Pass
in FALSE as the 'sending' arg to e_msg_composer_get_message.
(build_message): Added a 'sending' arg, which is passed to
e_msg_composer_get_message.
(e_msg_composer_get_message): Added a 'sending' arg,
which gets passed directly on to build_message.
* e-msg-composer-hdrs.c (e_msg_composer_hdrs_to_message): Added
a "sending" arg, which should be TRUE if the message is being
sent now (rather than being autosaved, etc.). The address
use scores are only updated when sending. (Bug #8332)
Removed obsolete (#if 0/#endif-ed) code.
2001-08-29 Jon Trowbridge <trow@ximian.com>
* mail-callbacks.c (composer_get_message): When calling
e_msg_composer_get_message, pass in TRUE for the 'sending' arg.
(Part of the fix for bug #8332)
svn path=/trunk/; revision=12518
Diffstat (limited to 'composer/e-msg-composer-hdrs.h')
-rw-r--r-- | composer/e-msg-composer-hdrs.h | 3 |
1 files changed, 2 insertions, 1 deletions
diff --git a/composer/e-msg-composer-hdrs.h b/composer/e-msg-composer-hdrs.h index 42f8dee7d1..b3a968920b 100644 --- a/composer/e-msg-composer-hdrs.h +++ b/composer/e-msg-composer-hdrs.h @@ -79,7 +79,8 @@ GtkType e_msg_composer_hdrs_get_type (void); GtkWidget *e_msg_composer_hdrs_new (gint visible_flags); void e_msg_composer_hdrs_to_message (EMsgComposerHdrs *hdrs, - CamelMimeMessage *msg); + CamelMimeMessage *msg, + gboolean sending); void e_msg_composer_hdrs_set_from_account (EMsgComposerHdrs *hdrs, const char *account_name); |