diff options
author | Jeffrey Stedfast <fejj@ximian.com> | 2003-03-29 00:39:33 +0800 |
---|---|---|
committer | Jeffrey Stedfast <fejj@src.gnome.org> | 2003-03-29 00:39:33 +0800 |
commit | 48f9f186fc277c98caed5a0431ed8645ca48388b (patch) | |
tree | dbe77e91c26310e0d1670bb0b6df42e7a93d7215 /mail | |
parent | 87770ea28622b009104c4803eb05043a7a3b42f7 (diff) | |
download | gsoc2013-evolution-48f9f186fc277c98caed5a0431ed8645ca48388b.tar.gz gsoc2013-evolution-48f9f186fc277c98caed5a0431ed8645ca48388b.tar.zst gsoc2013-evolution-48f9f186fc277c98caed5a0431ed8645ca48388b.zip |
Declare a prototype for this function prior to fe_got_children() so that
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.
svn path=/trunk/; revision=20558
Diffstat (limited to 'mail')
-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) |