diff options
author | Jeffrey Stedfast <fejj@ximian.com> | 2002-08-13 05:00:58 +0800 |
---|---|---|
committer | Jeffrey Stedfast <fejj@src.gnome.org> | 2002-08-13 05:00:58 +0800 |
commit | 0e39518ba7b473c1524e47a0b2618b503e116326 (patch) | |
tree | 4df02e1ebc5d029a5041e15f3ae03fb443e17108 /composer/e-msg-composer.c | |
parent | f3e71a93f56b1d14768059114df2fd3978f5abfb (diff) | |
download | gsoc2013-evolution-0e39518ba7b473c1524e47a0b2618b503e116326.tar.gz gsoc2013-evolution-0e39518ba7b473c1524e47a0b2618b503e116326.tar.zst gsoc2013-evolution-0e39518ba7b473c1524e47a0b2618b503e116326.zip |
Set the file-selection window icon. Fixes the mailer part of bug #7368.
2002-08-12 Jeffrey Stedfast <fejj@ximian.com>
* e-msg-composer-select-file.c (create_file_selection): Set the
file-selection window icon. Fixes the mailer part of bug #7368.
* e-msg-composer-attachment.c (e_msg_composer_attachment_new):
Don't call new_from_mime_part() since that function now does some
copying of the mime part rather than simply reffing it.
(e_msg_composer_attachment_new_from_mime_part): Make a copy of the
MIME part so that if the message that this part belongs to gets
deleted from the the remote store, the composer will still have a
copy of it. Fixes bug #20308.
svn path=/trunk/; revision=17763
Diffstat (limited to 'composer/e-msg-composer.c')
-rw-r--r-- | composer/e-msg-composer.c | 3 |
1 files changed, 1 insertions, 2 deletions
diff --git a/composer/e-msg-composer.c b/composer/e-msg-composer.c index f8c3b7ff12..c5e7fb6de6 100644 --- a/composer/e-msg-composer.c +++ b/composer/e-msg-composer.c @@ -1136,8 +1136,7 @@ show_attachments (EMsgComposer *composer, } static void -save (EMsgComposer *composer, - const char *file_name) +save (EMsgComposer *composer, const char *file_name) { CORBA_Environment ev; char *my_file_name; |