Fix doxygen comments

git-svn-id: svn+ssh://svn.gnucash.org/repo/gnucash/trunk@20625 57a11ea4-9604-0410-9ed3-97b8803252fd
This commit is contained in:
Geert Janssens 2011-05-11 21:51:54 +00:00
parent 8183cf116d
commit 16cc35f454

View File

@ -134,12 +134,16 @@ void gncOwnerCopy (const GncOwner *src, GncOwner *dest);
/** \name Comparison routines. /** \name Comparison routines.
@{ @{
*/ */
gboolean gncOwnerEqual (const GncOwner *a, const GncOwner *b); /** Check if both objects refer to the same owner type /** Assess equality by checking
if and the owner reference points to the same * - if both owner objects refer to the same owner type
{vendor/customer/employee} in memory */ * - and if the owner reference points to the same
int gncOwnerGCompareFunc (const GncOwner *a, const GncOwner *b); /** Same as gncOwnerEqual, but returns 0 if * {vendor/customer/employee} in memory */
gboolean gncOwnerEqual (const GncOwner *a, const GncOwner *b);
/** Same as gncOwnerEqual, but returns 0 if
equal to be used as a GList custom compare function */ equal to be used as a GList custom compare function */
int gncOwnerCompare (const GncOwner *a, const GncOwner *b); /** Sort on name */ int gncOwnerGCompareFunc (const GncOwner *a, const GncOwner *b);
/** Sort on name */
int gncOwnerCompare (const GncOwner *a, const GncOwner *b);
/** @} */ /** @} */
/** Get the GncGUID of the immediate owner */ /** Get the GncGUID of the immediate owner */