remove Since gtk-doc tags from the internal libkit library
authorDavid Zeuthen <davidz@redhat.com>
Wed, 21 Nov 2007 02:40:42 +0000 (21:40 -0500)
committerDavid Zeuthen <davidz@redhat.com>
Wed, 21 Nov 2007 02:40:42 +0000 (21:40 -0500)
src/kit/kit-hash.h
src/kit/kit-list.h

index cc581b4..e4b2f7c 100644 (file)
@@ -48,8 +48,6 @@ typedef struct _KitHash KitHash;
  * used when the key is a pointer and an char* respectively.
  *
  * Returns: the hash value corresponding to the key
- *
- * Since: 0.7
  */
 typedef uint32_t (*KitHashFunc) (const void *key);
 
@@ -64,8 +62,6 @@ typedef uint32_t (*KitHashFunc) (const void *key);
  * pointer and an char* respectively.
  *
  * Returns: #TRUE iff the keys are equal
- *
- * Since: 0.7
  */
 typedef kit_bool_t (*KitEqualFunc) (const void *key1, const void *key2);
 
@@ -77,8 +73,6 @@ typedef kit_bool_t (*KitEqualFunc) (const void *key1, const void *key2);
  * is destroyed. It is passed the pointer to the data element and
  * should free any memory and resources allocated for it. The function
  * p_free() or any of the object unref functions can be passed here.
- *
- * Since: 0.7
  */
 typedef void (*KitFreeFunc) (void *p);
 
@@ -93,8 +87,6 @@ typedef void (*KitFreeFunc) (void *p);
  * ref functions can be passed here.
  *
  * Returns: A copy or ref of the object in question
- *
- * Since: 0.7
  */
 typedef void *(*KitCopyFunc) (const void *p);
 
@@ -108,8 +100,6 @@ typedef void *(*KitCopyFunc) (const void *p);
  * Type signature for callback function used in kit_hash_foreach().
  *
  * Returns: Return #TRUE to short-circuit, e.g. stop the iteration.
- *
- * Since: 0.7
  */
 typedef kit_bool_t (*KitHashForeachFunc) (KitHash *hash,
                                           void *key,
index 1984fac..7daf363 100644 (file)
@@ -44,8 +44,6 @@ typedef struct _KitList KitList;
  * @prev: the previous element in the list or #NULL if this is the last element
  *
  * Public members of the #KitList data structure
- *
- * Since: 0.7
  */
 struct _KitList {
         void *data;
@@ -62,8 +60,6 @@ struct _KitList {
  * Type signature for callback function used in kit_list_foreach().
  *
  * Returns: Return #TRUE to short-circuit, e.g. stop the iteration.
- *
- * Since: 0.7
  */
 typedef kit_bool_t (*KitListForeachFunc) (KitList *list,
                                           void *data,