update documentation

git-svn-id: svn+ssh://svn.gnucash.org/repo/gnucash/trunk@9149 57a11ea4-9604-0410-9ed3-97b8803252fd
This commit is contained in:
Linas Vepstas
2003-08-24 00:33:52 +00:00
parent 15c9198678
commit af27c1fcee

View File

@@ -534,7 +534,12 @@ void xaccAccountInsertLot (Account *, GNCLot *);
void xaccAccountRemoveLot (Account *, GNCLot *);
/** The xaccAccountGetLotList() routine returns a pointer to the GList of
* the lots in this account. The same warnings as above apply. */
* the lots in this account.
* @note This GList is the account's internal
* data structure: do not delete it when done; treat it as a read-only
* structure. Note that some routines (such as xaccAccountRemoveLot())
* modify this list directly, and could leave you with a corrupted
* pointer. */
LotList* xaccAccountGetLotList (Account *account);
/** The xaccAccountForEachLot() method will apply the function 'proc'