From e4ae3e610accdf67ebc8688ebbde2f3a40a0fc74 Mon Sep 17 00:00:00 2001 From: James LewisMoss Date: Thu, 10 May 2001 16:13:13 +0000 Subject: [PATCH] * src/engine/rpc/RpcUtils.c (rpcend_build_gncacctlist): xaccGroupForEachAccountDeeply -> xaccGroupForEachAccount(...TRUE) (rpcend_build_gncacct_verslist): same. git-svn-id: svn+ssh://svn.gnucash.org/repo/gnucash/trunk@4154 57a11ea4-9604-0410-9ed3-97b8803252fd --- src/engine/rpc/RpcUtils.c | 4 ++-- 1 file changed, 2 insertions(+), 2 deletions(-) diff --git a/src/engine/rpc/RpcUtils.c b/src/engine/rpc/RpcUtils.c index 76cf873594..7111242e1c 100644 --- a/src/engine/rpc/RpcUtils.c +++ b/src/engine/rpc/RpcUtils.c @@ -609,7 +609,7 @@ gnc_acctlist * rpcend_build_gncacctlist (AccountGroup *ag) ENTER ("ag=%p", ag); listinfo.end = &alist; listinfo.count = 0; - xaccGroupForEachAccountDeeply (ag, add_acctlist_cb, (void *) &listinfo); + xaccGroupForEachAccount (ag, add_acctlist_cb, (void *) &listinfo, TRUE); LEAVE ("%d accts", listinfo.count); return alist; } @@ -739,7 +739,7 @@ gnc_vers_list * rpcend_build_gncacct_verslist (AccountGroup *ag, listinfo.copyguid = copyguid; listinfo.count = 0; - xaccGroupForEachAccountDeeply (ag, add_acctvers_cb, (void *) &listinfo); + xaccGroupForEachAccount (ag, add_acctvers_cb, (void *) &listinfo, TRUE); LEAVE ("%d accts", listinfo.count); return vlist;