diff options
-rw-r--r-- | mail/ChangeLog | 6 | ||||
-rw-r--r-- | mail/subscribe-dialog.c | 3 |
2 files changed, 9 insertions, 0 deletions
diff --git a/mail/ChangeLog b/mail/ChangeLog index fa6f066c23..cc21b1179e 100644 --- a/mail/ChangeLog +++ b/mail/ChangeLog @@ -1,3 +1,9 @@ +2003-03-28 Jeffrey Stedfast <fejj@ximian.com> + + * subscribe-dialog.c (fe_check_for_children): Declare a prototype + for this function prior to fe_got_children() so that + fe_got_children() can call us. + 2003-03-26 Dan Winship <danw@ximian.com> * mail-format.c (write_address): remove extra arg to diff --git a/mail/subscribe-dialog.c b/mail/subscribe-dialog.c index 0662eed8cd..f4b203ad77 100644 --- a/mail/subscribe-dialog.c +++ b/mail/subscribe-dialog.c @@ -684,6 +684,9 @@ fe_sort_folder (ETreeMemory *etmm, ETreePath left, ETreePath right, gpointer use return strcasecmp (ftree_node_get_name (n_left), ftree_node_get_name (n_right)); } + +static void fe_check_for_children (FolderETree *ftree, ETreePath path); + /* scanning */ static void fe_got_children (CamelStore *store, char *prefix, CamelFolderInfo *info, gpointer data) |