name change due to data hiding

git-svn-id: svn+ssh://svn.gnucash.org/repo/gnucash/trunk@683 57a11ea4-9604-0410-9ed3-97b8803252fd
This commit is contained in:
Linas Vepstas 1998-03-20 09:00:35 +00:00
parent ee406edb2d
commit a2beef50d9

View File

@ -313,12 +313,12 @@ LoadXferCell (ComboCell *cell, AccountGroup *grp)
/* build the xfer menu out of account names */
/* traverse sub-accounts recursively */
n = 0;
acc = getAccount (grp, n);
acc = xaccGroupGetAccount (grp, n);
while (acc) {
xaccAddComboCellMenuItem (cell, xaccAccountGetName (acc));
LoadXferCell (cell, xaccAccountGetChildren (acc));
n++;
acc = getAccount (grp, n);
acc = xaccGroupGetAccount (grp, n);
}
}