From df8180e04abf2efd32ca0624484df5b35e564759 Mon Sep 17 00:00:00 2001 From: Jason Leach Date: Mon, 13 Aug 2001 21:36:41 +0000 Subject: Fix this so it can actually get folders from the hash of folders on the 2001-08-13 Jason Leach * mail-local.c (get_folder): Fix this so it can actually get folders from the hash of folders on the local store (it was looking up plain @folder_name, which is typically "mbox", instead of the full URI, /home/jleach/evolution/local/Foo/mbox). * component-factory.c (do_remove_folder): Rename to remove_folder_done, more fitting for it's purpose. (do_xfer_folder): Similar name change. (do_create_folder): Similar name change. (remove_folder): Don't notifyResult for the component here, we will notify with our result in remove_folder_done. (xfer_folder): Ditto. * mail-vfolder.c (vfolder_refresh): Create new folders with unread counts of "0" instead of #FALSE (which just happens to be #defined as zero). svn path=/trunk/; revision=11964 --- mail/mail-vfolder.c | 6 +++--- 1 file changed, 3 insertions(+), 3 deletions(-) (limited to 'mail/mail-vfolder.c') diff --git a/mail/mail-vfolder.c b/mail/mail-vfolder.c index b4382a33c7..4af918e64d 100644 --- a/mail/mail-vfolder.c +++ b/mail/mail-vfolder.c @@ -169,7 +169,7 @@ vfolder_refresh (void) path = g_strdup_printf("/%s", info->name); evolution_storage_removed_folder(vfolder_storage, path); evolution_storage_new_folder(vfolder_storage, path, g_basename(path), - "mail", uri, info->name, FALSE); + "mail", uri, info->name, 0); g_free(uri); g_free(path); } @@ -185,7 +185,7 @@ vfolder_refresh (void) uri = g_strdup_printf("vfolder:%s", info->name); path = g_strdup_printf("/%s", info->name); evolution_storage_new_folder(vfolder_storage, path, g_basename(path), - "mail", uri, info->name, FALSE); + "mail", uri, info->name, 0); g_free(uri); g_free(path); } @@ -221,7 +221,7 @@ vfolder_refresh (void) uri = g_strdup_printf("vfolder:%s", info->name); path = g_strdup_printf("/%s", info->name); evolution_storage_new_folder(vfolder_storage, path, g_basename(path), - "mail", uri, info->name, FALSE); + "mail", uri, info->name, 0); g_free(uri); g_free(path); } -- cgit