diff options
author | Jeffrey Stedfast <fejj@ximian.com> | 2003-03-27 03:04:42 +0800 |
---|---|---|
committer | Jeffrey Stedfast <fejj@src.gnome.org> | 2003-03-27 03:04:42 +0800 |
commit | f4e863ea7f2ead82a3678cbe8870e01a3a3bf14e (patch) | |
tree | 2b95b674d5928da551e8780bd75e73faec3f1292 /mail/subscribe-dialog.c | |
parent | 3a8fed7be6e8523d13cdfd8c256c74ee0ab9b096 (diff) | |
download | gsoc2013-evolution-f4e863ea7f2ead82a3678cbe8870e01a3a3bf14e.tar gsoc2013-evolution-f4e863ea7f2ead82a3678cbe8870e01a3a3bf14e.tar.gz gsoc2013-evolution-f4e863ea7f2ead82a3678cbe8870e01a3a3bf14e.tar.bz2 gsoc2013-evolution-f4e863ea7f2ead82a3678cbe8870e01a3a3bf14e.tar.lz gsoc2013-evolution-f4e863ea7f2ead82a3678cbe8870e01a3a3bf14e.tar.xz gsoc2013-evolution-f4e863ea7f2ead82a3678cbe8870e01a3a3bf14e.tar.zst gsoc2013-evolution-f4e863ea7f2ead82a3678cbe8870e01a3a3bf14e.zip |
If the CamelFolderInfo node doesn't have \NoInferriors set, then check for
2003-03-26 Jeffrey Stedfast <fejj@ximian.com>
* subscribe-dialog.c (fe_got_children): If the CamelFolderInfo
node doesn't have \NoInferriors set, then check for
subfolders. Fixes bug #40314.
svn path=/trunk/; revision=20520
Diffstat (limited to 'mail/subscribe-dialog.c')
-rw-r--r-- | mail/subscribe-dialog.c | 11 |
1 files changed, 7 insertions, 4 deletions
diff --git a/mail/subscribe-dialog.c b/mail/subscribe-dialog.c index bf263b501a..0662eed8cd 100644 --- a/mail/subscribe-dialog.c +++ b/mail/subscribe-dialog.c @@ -118,7 +118,7 @@ */ /* FIXME: we should disable/enable the subscribe/unsubscribe buttons as - * appropriate when only a single message is selected. We need a + * appropriate when only a single folder is selected. We need a * mechanism to learn when the selected folder's subscription status * changes, so when the user double-clicks it (eg) the buttons can * (de)sensitize appropriately. See Ximian bug #7673. @@ -697,18 +697,21 @@ fe_got_children (CamelStore *store, char *prefix, CamelFolderInfo *info, gpointe prefix = ""; for ( ; info; info = info->sibling) { - ETreePath child_path; + ETreePath child_path; ftree_node *node; - + if (g_hash_table_lookup(closure->ftree->node_full_name, info->full_name)) continue; - + node = ftree_node_new (store, info); child_path = e_tree_memory_node_insert (E_TREE_MEMORY (closure->ftree), closure->path, 0, node); g_hash_table_insert(closure->ftree->node_full_name, ftree_node_get_full_name(node), child_path); + + if (!(info->flags & CAMEL_FOLDER_NOINFERIORS)) + fe_check_for_children (closure->ftree, child_path); } #if 0 |