From 3e805c974231079ce66c535993c92c4be48696e2 Mon Sep 17 00:00:00 2001 From: Srinivasa Ragavan Date: Thu, 10 Aug 2006 07:58:44 +0000 Subject: Fix for bug #341482 svn path=/trunk/; revision=32522 --- widgets/misc/e-attachment-bar.c | 6 +++--- 1 file changed, 3 insertions(+), 3 deletions(-) (limited to 'widgets/misc/e-attachment-bar.c') diff --git a/widgets/misc/e-attachment-bar.c b/widgets/misc/e-attachment-bar.c index 3efe865681..4b67ba21ec 100644 --- a/widgets/misc/e-attachment-bar.c +++ b/widgets/misc/e-attachment-bar.c @@ -790,7 +790,7 @@ eab_drag_data_get(EAttachmentBar *bar, GdkDragContext *drag, GtkSelectionData *d if (!(path = temp_save_part (attachment->body))) continue; - url = camel_url_new ("file:", NULL); + url = camel_url_new ("file://", NULL); camel_url_set_path (url, path); attachment->store_uri = camel_url_to_string (url, 0); camel_url_free (url); @@ -903,13 +903,13 @@ eab_icon_clicked_cb (EAttachmentBar *bar, GdkEvent *event, gpointer *dummy) /* Check if the file is stored already */ if (!attachment->store_uri) { path = temp_save_part (attachment->body); - url = camel_url_new ("file:", NULL); + url = camel_url_new ("file://", NULL); camel_url_set_path (url, path); attachment->store_uri = camel_url_to_string (url, 0); camel_url_free (url); g_free (path); } - + /* launch the url now */ gnome_url_show (attachment->store_uri, &error); if (error) { -- cgit