mirror of
https://github.com/Gnucash/gnucash.git
synced 2025-02-25 18:55:30 -06:00
[gnc-autoclear.c] tidy xaccAccountGetSplitList
because acc_splits will need to be g_list_free in a future commit
This commit is contained in:
parent
6eed5b6641
commit
f21f4f4264
@ -122,7 +122,8 @@ gnc_autoclear_get_splits (Account *account, gnc_numeric toclear_value,
|
|||||||
DUP_LIST = g_list_prepend (NULL, NULL);
|
DUP_LIST = g_list_prepend (NULL, NULL);
|
||||||
|
|
||||||
/* Extract which splits are not cleared and compute the amount we have to clear */
|
/* Extract which splits are not cleared and compute the amount we have to clear */
|
||||||
for (GList *node = xaccAccountGetSplitList (account); node; node = node->next)
|
GList *acc_splits = xaccAccountGetSplitList (account);
|
||||||
|
for (GList *node = acc_splits; node; node = node->next)
|
||||||
{
|
{
|
||||||
Split *split = (Split *)node->data;
|
Split *split = (Split *)node->data;
|
||||||
gnc_numeric amount = xaccSplitGetAmount (split);
|
gnc_numeric amount = xaccSplitGetAmount (split);
|
||||||
|
Loading…
Reference in New Issue
Block a user