PolicyKit: Branch 'master'

David Zeuthen david at kemper.freedesktop.org
Tue Nov 20 18:41:03 PST 2007


 src/kit/kit-hash.h |   10 ----------
 src/kit/kit-list.h |    4 ----
 2 files changed, 14 deletions(-)

New commits:
commit bf64b4c07e0148835275c5b3e7806c7db404b971
Author: David Zeuthen <davidz at redhat.com>
Date:   Tue Nov 20 21:40:42 2007 -0500

    remove Since gtk-doc tags from the internal libkit library

diff --git a/src/kit/kit-hash.h b/src/kit/kit-hash.h
index cc581b4..e4b2f7c 100644
--- a/src/kit/kit-hash.h
+++ b/src/kit/kit-hash.h
@@ -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,
diff --git a/src/kit/kit-list.h b/src/kit/kit-list.h
index 1984fac..7daf363 100644
--- a/src/kit/kit-list.h
+++ b/src/kit/kit-list.h
@@ -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,


More information about the hal-commit mailing list