From 53d17d53aa020d97e6737f25649e60fa0f9fc123 Mon Sep 17 00:00:00 2001 From: Phil Longstaff Date: Sun, 28 Feb 2010 13:18:40 +0000 Subject: [PATCH] Fix up some doxygen comments git-svn-id: svn+ssh://svn.gnucash.org/repo/gnucash/trunk@18759 57a11ea4-9604-0410-9ed3-97b8803252fd --- src/engine/gnc-lot.h | 8 ++++---- 1 file changed, 4 insertions(+), 4 deletions(-) diff --git a/src/engine/gnc-lot.h b/src/engine/gnc-lot.h index 780e831cba..c352708f7b 100644 --- a/src/engine/gnc-lot.h +++ b/src/engine/gnc-lot.h @@ -155,16 +155,16 @@ Split * gnc_lot_get_earliest_split (GNCLot *lot); */ Split * gnc_lot_get_latest_split (GNCLot *lot); -unsigned char gnc_lot_get_marker(const GNCLot*); -void gnc_lot_set_marker(GNCLot*, unsigned char); - +/** Reset closed flag so that it will be recalculated. */ void gnc_lot_set_closed_unknown(GNCLot*); -/** Get and set the account title, or the account notes. */ +/** Get and set the account title, or the account notes, or the marker. */ const char * gnc_lot_get_title (const GNCLot *); const char * gnc_lot_get_notes (const GNCLot *); void gnc_lot_set_title (GNCLot *, const char *); void gnc_lot_set_notes (GNCLot *, const char *); +unsigned char gnc_lot_get_marker(const GNCLot*); +void gnc_lot_set_marker(GNCLot*, unsigned char); /** Every lot has a place to hang kvp data. This routine returns that * place.