summaryrefslogtreecommitdiff
path: root/gck
diff options
context:
space:
mode:
authorStef Walter <stefw@gnome.org>2012-06-26 08:47:08 +0200
committerStef Walter <stefw@gnome.org>2012-06-26 08:47:08 +0200
commit1295eca404dd02396abfcab35e3b5dda000c1712 (patch)
treeb6423d9e2c6ff8ff29174a81b0624295326aee25 /gck
parent46062832e6c273392481b0358f8cb9e9e3af8a76 (diff)
Documentation fixes
* Clean up documentation and introspection warnings * Separate GcrImportInteraction docs into own page
Diffstat (limited to 'gck')
-rw-r--r--gck/gck-attributes.c23
-rw-r--r--gck/gck-enumerator.c2
2 files changed, 3 insertions, 22 deletions
diff --git a/gck/gck-attributes.c b/gck/gck-attributes.c
index 5c86f31..d05287a 100644
--- a/gck/gck-attributes.c
+++ b/gck/gck-attributes.c
@@ -40,15 +40,9 @@
* This structure represents a PKCS11 CK_ATTRIBUTE. These attributes contain i
* about a PKCS11 object. Use gck_object_get() or gck_object_set() to set and
* attributes on an object.
- */
-
-/**
- * GckAttribute:
- * @type: The attribute type, such as CKA_LABEL.
- * @value: (array length=length): The value of the attribute. May be NULL.
- * @length: The length of the attribute. May be G_MAXULONG if the attribute is
*
- * This structure represents a PKCS11 CK_ATTRIBUTE.
+ * Although you are free to allocate a #GckAttribute in your own code, no functions in
+ * this library will operate on such an attribute.
*/
G_STATIC_ASSERT (sizeof (GckAttribute) == sizeof (CK_ATTRIBUTE));
@@ -1395,19 +1389,6 @@ gck_builder_clear (GckBuilder *builder)
}
/**
- * SECTION:gck-attribute
- * @title: GckAttribute
- * @short_description: A PKCS11 attribute.
- *
- * This structure represents a PKCS11 CK_ATTRIBUTE. These attributes contain information
- * about a PKCS11 object. Use gck_object_get() or gck_object_set() to set and retrieve
- * attributes on an object.
- *
- * Although you are free to allocate a #GckAttribute in your own code, no functions in
- * this library will operate on such an attribute.
- */
-
-/**
* GckAttribute:
* @type: The attribute type, such as CKA_LABEL.
* @value: (array length=length): The value of the attribute. May be NULL.
diff --git a/gck/gck-enumerator.c b/gck/gck-enumerator.c
index 1945797..0c6cc02 100644
--- a/gck/gck-enumerator.c
+++ b/gck/gck-enumerator.c
@@ -921,7 +921,7 @@ gck_enumerator_get_chained (GckEnumerator *self)
}
/**
- * gck_enumerator_set_interaction:
+ * gck_enumerator_set_chained:
* @self: the enumerator
* @chained: (allow-none): the chained enumerator or %NULL
*