mirror of
https://github.com/Gnucash/gnucash.git
synced 2025-02-25 18:55:30 -06:00
MSVC compatibility: Remove forward declaration of static array by reordering the function that uses it.
git-svn-id: svn+ssh://svn.gnucash.org/repo/gnucash/trunk@18749 57a11ea4-9604-0410-9ed3-97b8803252fd
This commit is contained in:
parent
f101adee5c
commit
1973bc3e27
@ -127,14 +127,9 @@ fspd_init( fsParseData *fspd )
|
||||
g_date_clear( &fspd->once_day, 1 );
|
||||
}
|
||||
|
||||
static struct dom_tree_handler fs_dom_handlers[];
|
||||
|
||||
static
|
||||
gboolean
|
||||
gnc_fs_handler( xmlNodePtr node, gpointer d )
|
||||
{
|
||||
return dom_tree_generic_parse( node, fs_dom_handlers, d );
|
||||
}
|
||||
gnc_fs_handler( xmlNodePtr node, gpointer d );
|
||||
|
||||
static
|
||||
gboolean
|
||||
@ -447,6 +442,13 @@ static struct dom_tree_handler fs_dom_handlers[] =
|
||||
{ NULL, NULL, 0, 0 }
|
||||
};
|
||||
|
||||
static
|
||||
gboolean
|
||||
gnc_fs_handler( xmlNodePtr node, gpointer d )
|
||||
{
|
||||
return dom_tree_generic_parse( node, fs_dom_handlers, d );
|
||||
}
|
||||
|
||||
static
|
||||
gboolean
|
||||
gnc_freqSpec_end_handler(gpointer data_for_children,
|
||||
|
Loading…
Reference in New Issue
Block a user