[evolution-data-server] Fixed introspection annotations.



commit 1f6c48a830b4eef50adede18349f2fdc984d3cad
Author: tintou <corentin elementaryos org>
Date:   Thu Oct 9 22:53:01 2014 +0200

    Fixed introspection annotations.

 libedataserver/e-source-mail-signature.c |    8 ++++----
 libedataserver/e-source.c                |   12 ++++++------
 libedataserver/e-xml-hash-utils.c        |    6 +++---
 3 files changed, 13 insertions(+), 13 deletions(-)
---
diff --git a/libedataserver/e-source-mail-signature.c b/libedataserver/e-source-mail-signature.c
index 530a535..ef10b41 100644
--- a/libedataserver/e-source-mail-signature.c
+++ b/libedataserver/e-source-mail-signature.c
@@ -376,8 +376,8 @@ source_mail_signature_load_thread (GSimpleAsyncResult *simple,
 /**
  * e_source_mail_signature_load_sync:
  * @source: an #ESource
- * @contents: return location for the signature content
- * @length: (allow-none): return location for the length of the signature
+ * @contents: (out): return location for the signature content
+ * @length: (allow-none) (out): return location for the length of the signature
  *          content, or %NULL if the length is not needed
  * @cancellable: (allow-none): optional #GCancellable object, or %NULL
  * @error: return location for a #GError, or %NULL
@@ -620,8 +620,8 @@ e_source_mail_signature_load (ESource *source,
  * e_source_mail_signature_load_finish:
  * @source: an #ESource
  * @result: a #GAsyncResult
- * @contents: return location for the signature content
- * @length: (allow-none): return location for the length of the signature
+ * @contents: (out): return location for the signature content
+ * @length: (allow-none) (out): return location for the length of the signature
  *          content, or %NULL if the length is not needed
  * @error: return location for a #GError, or %NULL
  *
diff --git a/libedataserver/e-source.c b/libedataserver/e-source.c
index 7545387..42e58a8 100644
--- a/libedataserver/e-source.c
+++ b/libedataserver/e-source.c
@@ -3599,9 +3599,9 @@ e_source_remote_delete_finish (ESource *source,
  * e_source_get_oauth2_access_token_sync:
  * @source: an #ESource
  * @cancellable: (allow-none): optional #GCancellable object, or %NULL
- * @out_access_token: (allow-none): return location for the access token,
+ * @out_access_token: (allow-none) (out): return location for the access token,
  *                    or %NULL
- * @out_expires_in: (allow-none): return location for the token expiry,
+ * @out_expires_in: (allow-none) (out): return location for the token expiry,
  *                  or %NULL
  * @error: return location for a #GError, or %NULL
  *
@@ -3672,9 +3672,9 @@ e_source_get_oauth2_access_token (ESource *source,
  * e_source_get_oauth2_access_token_finish:
  * @source: an #ESource
  * @result: a #GAsyncResult
- * @out_access_token: (allow-none): return location for the access token,
+ * @out_access_token: (allow-none) (out): return location for the access token,
  *                    or %NULL
- * @out_expires_in: (allow-none): return location for the token expiry,
+ * @out_expires_in: (allow-none) (out): return location for the token expiry,
  *                  or %NULL
  * @error: return location for a #GError, or %NULL
  *
@@ -3879,7 +3879,7 @@ e_source_store_password_finish (ESource *source,
  * e_source_lookup_password_sync:
  * @source: an #ESource
  * @cancellable: optional #GCancellable object, or %NULL
- * @out_password: return location for the password, or %NULL
+ * @out_password: (out): return location for the password, or %NULL
  * @error: return location for a #GError, or %NULL
  *
  * Looks up a password for @source.  Both the default and session keyrings
@@ -4006,7 +4006,7 @@ e_source_lookup_password (ESource *source,
  * e_source_lookup_password_finish:
  * @source: an #ESource
  * @result: a #GAsyncResult
- * @out_password: return location for the password, or %NULL
+ * @out_password: (out): return location for the password, or %NULL
  * @error: return location for a #GError, or %NULL
  *
  * Finishes the operation started with e_source_lookup_password().
diff --git a/libedataserver/e-xml-hash-utils.c b/libedataserver/e-xml-hash-utils.c
index 1951450..fa0a9c0 100644
--- a/libedataserver/e-xml-hash-utils.c
+++ b/libedataserver/e-xml-hash-utils.c
@@ -42,7 +42,7 @@
  * %E_XML_HASH_TYPE_OBJECT_UID, then XML objects will be indexed in
  * the hash by their UID (other nodes will still be indexed by name).
  *
- * Returns: (transfer full): The newly-created #GHashTable representation
+ * Returns: (transfer full) (element-type utf8 utf8): The newly-created #GHashTable representation
  * of @doc.
  **/
 GHashTable *
@@ -119,7 +119,7 @@ foreach_save_func (gpointer key,
 
 /**
  * e_xml_from_hash:
- * @hash: The #GHashTable to extract the XML from
+ * @hash: (element-type utf8 utf8): The #GHashTable to extract the XML from
  * @type: The #EXmlHashType used to store the XML
  * @root_name: The name to call the new #xmlDoc
  *
@@ -158,7 +158,7 @@ free_values (gpointer key,
 
 /**
  * e_xml_destroy_hash:
- * @hash: the #GHashTable to destroy
+ * @hash: (element-type utf8 utf8): the #GHashTable to destroy
  *
  * Frees the memory used by @hash and its contents.
  **/


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