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 /mail | |
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 'mail')
-rw-r--r-- | mail/ChangeLog | 6 | ||||
-rw-r--r-- | mail/mail-callbacks.c | 2 |
2 files changed, 7 insertions, 1 deletions
diff --git a/mail/ChangeLog b/mail/ChangeLog index 768d98e67f..1de699c939 100644 --- a/mail/ChangeLog +++ b/mail/ChangeLog @@ -1,3 +1,9 @@ +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) + 2001-08-29 Peter Williams <peterw@ximian.com> * folder-browser-ui.c: Fix the pixmap for /commands/MessageUndelete. 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; |