tls-certificate: Fix GI annotations

Tue, 30 Aug 2016 01:58:06 -0500

author
Mike Ruprecht <cmaiku@gmail.com>
date
Tue, 30 Aug 2016 01:58:06 -0500
changeset 37972
a728c6b23e00
parent 37971
35c6b0947dfc
child 37973
c9a2d2176444

tls-certificate: Fix GI annotations

libpurple/tls-certificate.h file | annotate | diff | comparison | revisions
--- a/libpurple/tls-certificate.h	Tue Aug 30 00:50:41 2016 -0500
+++ b/libpurple/tls-certificate.h	Tue Aug 30 01:58:06 2016 -0500
@@ -45,7 +45,7 @@
  * purple_tls_certificate_trust() and friends. These IDs can then be passed
  * to purple_certificate_path() or used directly, if desired.
  *
- * Returns: (element-type utf8): The #GList of IDs described above
+ * Returns: (transfer full) (element-type utf8): #GList of IDs described above
  *          Free with purple_certificate_free_ids()
  */
 GList *
@@ -53,7 +53,8 @@
 
 /**
  * purple_tls_certificate_free_ids:
- * @ids: List of ids retrieved from purple_certificate_list_ids()
+ * @ids: (transfer full) (element-type utf8): List of ids retrieved from
+ *       purple_certificate_list_ids()
  *
  * Frees the list of IDs returned from purple_certificate_list_ids().
  */
@@ -66,6 +67,8 @@
  * @error: A GError location to store the error occurring, or NULL to ignore
  *
  * Loads the certificate referenced by ID into a #GTlsCertificate object.
+ *
+ * Returns: (transfer full): #GTlsCertificate loaded from ID
  */
 GTlsCertificate *
 purple_tls_certificate_new_from_id(const gchar *id, GError **error);
@@ -106,7 +109,7 @@
  * Connects the Purple TLS certificate subsystem to @conn so it will accept
  * certificates trusted by purple_tls_certificate_trust() and friends.
  *
- * Returns: (transfer: none) (type GObject.Object): @conn, similar to
+ * Returns: (transfer none) (type GObject.Object): @conn, similar to
  *          g_object_connect()
  */
 gpointer
@@ -120,7 +123,7 @@
  * connections it creates will accept certificates trusted by
  * purple_tls_certificate_trust() and friends.
  *
- * Returns: (transfer: none) (type GObject.Object): @client, similar to
+ * Returns: (transfer none) (type GObject.Object): @client, similar to
  *          g_object_connect()
  */
 gpointer

mercurial