Updated to reflect changes made to the move/copy API in camel-folder.c

2001-03-26  Jeffrey Stedfast  <fejj@ximian.com>

	* mail-ops.c (transfer_messages_transfer): Updated to reflect
	changes made to the move/copy API in camel-folder.c
	(add_vtrash_info): Use /Trash as the path instead of Trash.

	* mail-local.c (reconfigure_folder_reconfigure): Updated this too.

svn path=/trunk/; revision=8963
This commit is contained in:
Jeffrey Stedfast
2001-03-27 03:59:08 +00:00
committed by Jeffrey Stedfast
parent 162a2e87c4
commit 5aef76bbcb
2 changed files with 2 additions and 1 deletions

View File

@ -2,6 +2,7 @@
* mail-ops.c (transfer_messages_transfer): Updated to reflect
changes made to the move/copy API in camel-folder.c
(add_vtrash_info): Use /Trash as the path instead of Trash.
* mail-local.c (reconfigure_folder_reconfigure): Updated this too.

View File

@ -943,7 +943,7 @@ add_vtrash_info (CamelFolderInfo *info)
/* create our vTrash URL */
url = camel_url_new (info->url, NULL);
g_free (url->path);
url->path = g_strdup (_("Trash"));
url->path = g_strdup_printf ("/%s", _("Trash"));
uri = camel_url_to_string (url, FALSE);
camel_url_free (url);