mirror of
https://github.com/Gnucash/gnucash.git
synced 2025-02-25 18:55:30 -06:00
Rich Johnson's patch to include private structures in the doxygen docs.
* src/doc/doxygen.cfg.in: extract local classes = yes don't exclude *P.h git-svn-id: svn+ssh://svn.gnucash.org/repo/gnucash/trunk@10378 57a11ea4-9604-0410-9ed3-97b8803252fd
This commit is contained in:
parent
0900803abf
commit
4417e511a9
@ -1,3 +1,10 @@
|
||||
2004-12-17 Derek Atkins <derek@ihtfp.com>
|
||||
|
||||
Rich Johnson's patch to include private structures in the doxygen docs
|
||||
* src/doc/doxygen.cfg.in:
|
||||
extract local classes = yes
|
||||
don't exclude *P.h
|
||||
|
||||
2004-12-05 Derek Atkins <derek@ihtfp.com>
|
||||
|
||||
* src/engine/test/test-book-merge.c: targetEnt is always NULL
|
||||
|
@ -209,7 +209,7 @@ EXTRACT_STATIC = NO
|
||||
# defined locally in source files will be included in the documentation.
|
||||
# If set to NO only classes defined in header files are included.
|
||||
|
||||
EXTRACT_LOCAL_CLASSES = NO
|
||||
EXTRACT_LOCAL_CLASSES = YES
|
||||
|
||||
# If the HIDE_UNDOC_MEMBERS tag is set to YES, Doxygen will hide all
|
||||
# undocumented members of documented classes, files or namespaces.
|
||||
@ -423,7 +423,7 @@ EXCLUDE_SYMLINKS = YES
|
||||
# EXCLUDE_PATTERNS tag to specify one or more wildcard patterns to exclude
|
||||
# certain files from those directories.
|
||||
|
||||
EXCLUDE_PATTERNS = *P.h
|
||||
EXCLUDE_PATTERNS =
|
||||
|
||||
# The EXAMPLE_PATH tag can be used to specify one or more files or
|
||||
# directories that contain example code fragments that are included (see
|
||||
|
@ -1258,6 +1258,9 @@ get_random_split(QofBook *book, Account *acct)
|
||||
num = get_random_gnc_numeric ();
|
||||
xaccSplitSetAmount(ret, num);
|
||||
|
||||
if (num.num == 0)
|
||||
fprintf(stderr, "get_random_split: Created split with zero amount: %p\n", ret);
|
||||
|
||||
xaccSplitSetSlots_nc(ret, get_random_kvp_frame());
|
||||
|
||||
return ret;
|
||||
|
Loading…
Reference in New Issue
Block a user