[Gnucash-changes] fix the quickfill docos

Linas Vepstas linas at cvs.gnucash.org
Mon May 31 10:57:31 EDT 2004


Log Message:
-----------
fix the quickfill docos

Modified Files:
--------------
    gnucash/src/gnome-utils:
        QuickFill.h

Revision Data
-------------
Index: QuickFill.h
===================================================================
RCS file: /home/cvs/cvsroot/gnucash/src/gnome-utils/QuickFill.h,v
retrieving revision 1.2
retrieving revision 1.3
diff -Lsrc/gnome-utils/QuickFill.h -Lsrc/gnome-utils/QuickFill.h -u -r1.2 -r1.3
--- src/gnome-utils/QuickFill.h
+++ src/gnome-utils/QuickFill.h
@@ -28,22 +28,23 @@
 #include <gdk/gdk.h>
 #include <glib.h>
 
-/**
- * @file QuickFill.h
- * @breif Quickfill is used to auto-complete typed user entries.
- * @author Copyright (C) 1997 Robin D. Clark
- * @author Copyright (C) 1998,2004 Linas Vepstas <linas at linas.org>
- * @author Copyright (C) 2000 Dave Peticolas
- *
- * QuickFill is meant to be used to quickly auto-complete typed 
- * user input.  Quickfill is implemented as a heirarchical tree 
- * of partial matching strings.  The root of the tree contains 
- * all of the strings that user input should be matched to.  
- * Then, given a short string segment, quickfill will return 
- * a subtree containing only those strings that start with desired
- * substring.  As additional letters are added to the substring,
- * Quickfill will thus narrow down to the unique matching string
- * (or to nothing if no match).
+/** @addtogroup QuickFill
+   QuickFill is meant to be used to quickly auto-complete typed 
+   user input.  Quickfill is implemented as a heirarchical tree 
+   of partial matching strings.  The root of the tree contains 
+   all of the strings that user input should be matched to.  
+   Then, given a short string segment, quickfill will return 
+   a subtree containing only those strings that start with desired
+   substring.  As additional letters are added to the substring,
+   Quickfill will thus narrow down to the unique matching string
+   (or to nothing if no match).
+   @{
+  
+   @file QuickFill.h
+   @breif Quickfill is used to auto-complete typed user entries.
+   @author Copyright (C) 1997 Robin D. Clark
+   @author Copyright (C) 1998,2004 Linas Vepstas <linas at linas.org>
+   @author Copyright (C) 2000 Dave Peticolas
  */
 
 typedef enum
@@ -55,7 +56,7 @@
 typedef struct _QuickFill QuickFill;
 
 
-/** PROTOTYPES ******************************************************/
+/* PROTOTYPES ******************************************************/
 
 QuickFill *  gnc_quickfill_new (void);
 void         gnc_quickfill_destroy (QuickFill *qf);
@@ -116,4 +117,5 @@
 void         gnc_quickfill_insert_wc (QuickFill *root, const GdkWChar *text,
                                       QuickFillSort sort_code);
 
+/** @} */
 #endif /* QUICKFILL_H */


More information about the gnucash-changes mailing list