aboutsummaryrefslogtreecommitdiffstats
path: root/camel/providers
diff options
context:
space:
mode:
authorNot Zed <NotZed@Ximian.com>2004-05-04 15:48:14 +0800
committerMichael Zucci <zucchi@src.gnome.org>2004-05-04 15:48:14 +0800
commitce6bb045a6540369f3fe8159dad4d9b9600ba583 (patch)
tree2dff5763ff93949864168454598d4a8eec6c7ebd /camel/providers
parent3fc532ba3c45bfd87b82f095668549de57bee818 (diff)
downloadgsoc2013-evolution-ce6bb045a6540369f3fe8159dad4d9b9600ba583.tar
gsoc2013-evolution-ce6bb045a6540369f3fe8159dad4d9b9600ba583.tar.gz
gsoc2013-evolution-ce6bb045a6540369f3fe8159dad4d9b9600ba583.tar.bz2
gsoc2013-evolution-ce6bb045a6540369f3fe8159dad4d9b9600ba583.tar.lz
gsoc2013-evolution-ce6bb045a6540369f3fe8159dad4d9b9600ba583.tar.xz
gsoc2013-evolution-ce6bb045a6540369f3fe8159dad4d9b9600ba583.tar.zst
gsoc2013-evolution-ce6bb045a6540369f3fe8159dad4d9b9600ba583.zip
** See #57979.
2004-05-04 Not Zed <NotZed@Ximian.com> ** See #57979. * camel-vee-folder.c (subfolder_renamed_update): when the subfolder gets renamed, remove all the old uid's and add the new ones (since the uid is based on the subordinate folder name). (subfolder_renamed): listen to renamed folder events. * providers/local/camel-mbox-store.c (get_folder_info): if we're getting a single folder with no children, make sure we fill the counts out. Fixes some rename strangeness. * camel-vee-folder.c (camel_vee_folder_add_folder): hook onto the folder renamed signal. (camel_vee_folder_finalise): unhook folder_renamed signal. (camel_vee_folder_remove_folder): same. svn path=/trunk/; revision=25776
Diffstat (limited to 'camel/providers')
-rw-r--r--camel/providers/local/camel-mbox-store.c3
1 files changed, 2 insertions, 1 deletions
diff --git a/camel/providers/local/camel-mbox-store.c b/camel/providers/local/camel-mbox-store.c
index b9d3a976d1..4893853689 100644
--- a/camel/providers/local/camel-mbox-store.c
+++ b/camel/providers/local/camel-mbox-store.c
@@ -823,7 +823,8 @@ get_folder_info(CamelStore *store, const char *top, guint32 flags, CamelExceptio
fi->child = scan_dir (store, url, visited, fi, subdir, top, flags, ex);
else
fill_fi(store, fi, flags);
- }
+ } else
+ fill_fi(store, fi, flags);
camel_url_free (url);