aboutsummaryrefslogtreecommitdiffstats
path: root/mail/mail-callbacks.c
diff options
context:
space:
mode:
authorJon Trowbridge <trow@ximian.com>2001-08-30 05:21:22 +0800
committerJon Trowbridge <trow@src.gnome.org>2001-08-30 05:21:22 +0800
commit8c22a4d62ecd7f626aad583192e361e3658c72ee (patch)
treeccdf62abef16fd0b6dc44101363d676673b55c00 /mail/mail-callbacks.c
parent7ca1797bbc3d3cddd56a4da17e211273b5815ece (diff)
downloadgsoc2013-evolution-8c22a4d62ecd7f626aad583192e361e3658c72ee.tar
gsoc2013-evolution-8c22a4d62ecd7f626aad583192e361e3658c72ee.tar.gz
gsoc2013-evolution-8c22a4d62ecd7f626aad583192e361e3658c72ee.tar.bz2
gsoc2013-evolution-8c22a4d62ecd7f626aad583192e361e3658c72ee.tar.lz
gsoc2013-evolution-8c22a4d62ecd7f626aad583192e361e3658c72ee.tar.xz
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 'mail/mail-callbacks.c')
-rw-r--r--mail/mail-callbacks.c2
1 files changed, 1 insertions, 1 deletions
diff --git a/mail/mail-callbacks.c b/mail/mail-callbacks.c
index 8421921c56..f3378c2047 100644
--- a/mail/mail-callbacks.c
+++ b/mail/mail-callbacks.c
@@ -342,7 +342,7 @@ composer_get_message (EMsgComposer *composer)
const char *subject;
int num_addrs, i;
- message = e_msg_composer_get_message (composer);
+ message = e_msg_composer_get_message (composer, TRUE /* yes, we are sending this baby! */ );
if (message == NULL)
return NULL;