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.
@{
*/
gboolean gncOwnerEqual (const GncOwner *a, const GncOwner *b); /** Check if both objects refer to the same owner type
if and the owner reference points to the same
{vendor/customer/employee} in memory */
int gncOwnerGCompareFunc (const GncOwner *a, const GncOwner *b); /** Same as gncOwnerEqual, but returns 0 if
equal to be used as a GList custom compare function */
int gncOwnerCompare (const GncOwner *a, const GncOwner *b); /** Sort on name */
/** Assess equality by checking
* - if both owner objects refer to the same owner type
* - and if the owner reference points to the same
* {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 */
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 */