diff options
author | Jeffrey Stedfast <fejj@ximian.com> | 2001-02-11 12:12:12 +0800 |
---|---|---|
committer | Jeffrey Stedfast <fejj@src.gnome.org> | 2001-02-11 12:12:12 +0800 |
commit | aae60baf0154867ea986e2b7000f21fa8c8444c9 (patch) | |
tree | a0aa9e5adfb5b6b9cc5cd3cffd66a9073a330052 /composer/evolution-composer.c | |
parent | ac9abd5e6096d8511a1fe3892cf9453eb7c7ba2f (diff) | |
download | gsoc2013-evolution-aae60baf0154867ea986e2b7000f21fa8c8444c9.tar gsoc2013-evolution-aae60baf0154867ea986e2b7000f21fa8c8444c9.tar.gz gsoc2013-evolution-aae60baf0154867ea986e2b7000f21fa8c8444c9.tar.bz2 gsoc2013-evolution-aae60baf0154867ea986e2b7000f21fa8c8444c9.tar.lz gsoc2013-evolution-aae60baf0154867ea986e2b7000f21fa8c8444c9.tar.xz gsoc2013-evolution-aae60baf0154867ea986e2b7000f21fa8c8444c9.tar.zst gsoc2013-evolution-aae60baf0154867ea986e2b7000f21fa8c8444c9.zip |
Updated. We might want to change the corba interface for this to allow
2001-02-10 Jeffrey Stedfast <fejj@ximian.com>
* evolution-composer.c (impl_Composer_set_headers): Updated. We
might want to change the corba interface for this to allow setting
the from-address as well.
* e-msg-composer.c (e_msg_composer_new_with_message): Updated.
(e_msg_composer_set_headers): Now takes a 'From' argument so that
we can try to pre-determine the account the user will want to send
from.
svn path=/trunk/; revision=8165
Diffstat (limited to 'composer/evolution-composer.c')
-rw-r--r-- | composer/evolution-composer.c | 4 |
1 files changed, 2 insertions, 2 deletions
diff --git a/composer/evolution-composer.c b/composer/evolution-composer.c index 3036f98e82..08c26a7aeb 100644 --- a/composer/evolution-composer.c +++ b/composer/evolution-composer.c @@ -95,8 +95,8 @@ impl_Composer_set_headers (PortableServer_Servant servant, gto = corba_recipientlist_to_glist (to); gcc = corba_recipientlist_to_glist (cc); gbcc = corba_recipientlist_to_glist (bcc); - - e_msg_composer_set_headers (composer->composer, gto, gcc, gbcc, + + e_msg_composer_set_headers (composer->composer, NULL, gto, gcc, gbcc, subject); free_recipient_glist (gto); |