From f7b024189bb105e1d1a59cd17ec46d76bf5bd346 Mon Sep 17 00:00:00 2001 From: Linas Vepstas Date: Tue, 4 Dec 2001 05:58:41 +0000 Subject: [PATCH] update the documentation git-svn-id: svn+ssh://svn.gnucash.org/repo/gnucash/trunk@6184 57a11ea4-9604-0410-9ed3-97b8803252fd --- src/engine/Group.h | 14 +++++++------- 1 file changed, 7 insertions(+), 7 deletions(-) diff --git a/src/engine/Group.h b/src/engine/Group.h index 994d043f7d..325f775fcf 100644 --- a/src/engine/Group.h +++ b/src/engine/Group.h @@ -50,25 +50,25 @@ void xaccAccountGroupCommitEdit (AccountGroup *grp); /* * The xaccGroupConcatGroup() subroutine will move (reparent) - * all accounts from the "from" group to the "to" group, + * all accounts from the "src" group to the "dest" group, * preserving the account heirarchy. It will also take care - * that the moved accounts will have the "to" group's book + * that the moved accounts will have the "dest" group's book * parent as well. * * The xaccGroupCopyGroup() subroutine will copy all accounts - * from the "from" group to the "to" group, preserving the + * from the "src" group to the "dest" group, preserving the * account heirarchy. It will also take care that the moved - * accounts will have the "to" groups book parent as well. + * accounts will have the "dest" group's book parent as well. * This routine will *NOT* copy any splits/transactions. - * It will copy the KVP tree. + * It will copy the KVP trees in each account. * * The xaccGroupMergeAccounts() subroutine will go through a group, * merging all accounts that have the same name and description. * This function is useful when importing Quicken(TM) files. */ -void xaccGroupConcatGroup (AccountGroup *to, AccountGroup *from); -void xaccGroupCopyGroup (AccountGroup *to, AccountGroup *from); +void xaccGroupConcatGroup (AccountGroup *dest, AccountGroup *src); +void xaccGroupCopyGroup (AccountGroup *dest, AccountGroup *src); void xaccGroupMergeAccounts (AccountGroup *grp); /*