[gcr] gck: Properly flag (out) arguments for introspection



commit a1069085aa83145c1ab900b08ed405a6ea243682
Author: Stef Walter <stefw gnome org>
Date:   Sat Nov 2 13:34:32 2013 +0100

    gck: Properly flag (out) arguments for introspection

 gck/gck-attributes.c  |    8 ++++----
 gcr/gcr-certificate.c |    4 ++--
 2 files changed, 6 insertions(+), 6 deletions(-)
---
diff --git a/gck/gck-attributes.c b/gck/gck-attributes.c
index 4041dd7..480509a 100644
--- a/gck/gck-attributes.c
+++ b/gck/gck-attributes.c
@@ -2146,7 +2146,7 @@ gck_attributes_find (GckAttributes *attrs,
  * gck_attributes_find_boolean:
  * @attrs: The attributes array to search.
  * @attr_type: The type of attribute to find.
- * @value: The resulting gboolean value.
+ * @value: (out): The resulting gboolean value.
  *
  * Find an attribute with the specified type in the array.
  *
@@ -2168,7 +2168,7 @@ gck_attributes_find_boolean (GckAttributes *attrs, gulong attr_type, gboolean *v
  * gck_attributes_find_ulong:
  * @attrs: The attributes array to search.
  * @attr_type: The type of attribute to find.
- * @value: The resulting gulong value.
+ * @value: (out): The resulting gulong value.
  *
  * Find an attribute with the specified type in the array.
  *
@@ -2190,7 +2190,7 @@ gck_attributes_find_ulong (GckAttributes *attrs, gulong attr_type, gulong *value
  * gck_attributes_find_string:
  * @attrs: The attributes array to search.
  * @attr_type: The type of attribute to find.
- * @value: The resulting string value.
+ * @value: (out): The resulting string value.
  *
  * Find an attribute with the specified type in the array.
  *
@@ -2212,7 +2212,7 @@ gck_attributes_find_string (GckAttributes *attrs, gulong attr_type, gchar **valu
  * gck_attributes_find_date:
  * @attrs: The attributes array to search.
  * @attr_type: The type of attribute to find.
- * @value: The resulting GDate value.
+ * @value: (out): The resulting GDate value.
  *
  * Find an attribute with the specified type in the array.
  *
diff --git a/gcr/gcr-certificate.c b/gcr/gcr-certificate.c
index 6d18935..7f51630 100644
--- a/gcr/gcr-certificate.c
+++ b/gcr/gcr-certificate.c
@@ -1004,8 +1004,8 @@ gcr_certificate_get_icon (GcrCertificate *self)
 /**
  * gcr_certificate_get_basic_constraints:
  * @self: the certificate
- * @is_ca: (allow-none): location to place a %TRUE if is an authority
- * @path_len: (allow-none): location to place the max path length
+ * @is_ca: (out) (allow-none): location to place a %TRUE if is an authority
+ * @path_len: (out) (allow-none): location to place the max path length
  *
  * Get the basic constraints for the certificate if present. If %FALSE is
  * returned then no basic constraints are present and the @is_ca and


[Date Prev][Date Next]   [Thread Prev][Thread Next]   [Thread Index] [Date Index] [Author Index]