* src/gnc-ui-util.c (gnc_ui_account_get_balance):

xaccGroupForEachAccountDeeply -> xaccGroupForEachAccount(...TRUE)


git-svn-id: svn+ssh://svn.gnucash.org/repo/gnucash/trunk@4150 57a11ea4-9604-0410-9ed3-97b8803252fd
This commit is contained in:
James LewisMoss
2001-05-10 16:11:16 +00:00
parent c5aa26196d
commit 7753a796be
+1 -1
View File
@@ -245,7 +245,7 @@ gnc_ui_account_get_balance (Account *account, gboolean include_children)
children = xaccAccountGetChildren (account);
xaccGroupForEachAccountDeeply (children, balance_helper, &cb);
xaccGroupForEachAccount (children, balance_helper, &cb, TRUE);
balance = cb.balance;
}