diff options
author | Milan Crha <mcrha@redhat.com> | 2008-10-03 23:39:45 +0800 |
---|---|---|
committer | Milan Crha <mcrha@src.gnome.org> | 2008-10-03 23:39:45 +0800 |
commit | 676a02bcd1685cc9f7e380bee342a2e435cb1ca4 (patch) | |
tree | bab30346f59a42913e0d9b6f6397e98fe87bc381 /composer | |
parent | cc2f6e09676f9630000827bd98e3ce4ac7bcdbb2 (diff) | |
download | gsoc2013-evolution-676a02bcd1685cc9f7e380bee342a2e435cb1ca4.tar.gz gsoc2013-evolution-676a02bcd1685cc9f7e380bee342a2e435cb1ca4.tar.zst gsoc2013-evolution-676a02bcd1685cc9f7e380bee342a2e435cb1ca4.zip |
** Fix for bug #554664
2008-10-03 Milan Crha <mcrha@redhat.com>
** Fix for bug #554664
* e-composer-actions.c: (action_attach_cb):
Call attach_remote_file when knows the URI points to it.
svn path=/trunk/; revision=36549
Diffstat (limited to 'composer')
-rw-r--r-- | composer/ChangeLog | 7 | ||||
-rw-r--r-- | composer/e-composer-actions.c | 2 |
2 files changed, 8 insertions, 1 deletions
diff --git a/composer/ChangeLog b/composer/ChangeLog index 0e5a3dd328..315580b45c 100644 --- a/composer/ChangeLog +++ b/composer/ChangeLog @@ -1,3 +1,10 @@ +2008-10-03 Milan Crha <mcrha@redhat.com> + + ** Fix for bug #554664 + + * e-composer-actions.c: (action_attach_cb): + Call attach_remote_file when knows the URI points to it. + 2008-10-01 Milan Crha <mcrha@redhat.com> ** Part of fix for bug #554418 diff --git a/composer/e-composer-actions.c b/composer/e-composer-actions.c index c88f7e301e..4a2f659c99 100644 --- a/composer/e-composer-actions.c +++ b/composer/e-composer-actions.c @@ -86,7 +86,7 @@ action_attach_cb (GtkAction *action, if (!g_ascii_strcasecmp (url->protocol, "file")) e_attachment_bar_attach (bar, url->path, disposition); else - e_attachment_bar_attach (bar, iter->data, disposition); + e_attachment_bar_attach_remote_file (bar, iter->data, disposition); camel_url_free (url); } |