summaryrefslogtreecommitdiff
path: root/libpurple/conversations.h
diff options
context:
space:
mode:
authorElliott Sales de Andrade <qulogic@pidgin.im>2017-09-15 22:04:18 -0400
committerElliott Sales de Andrade <qulogic@pidgin.im>2017-09-15 22:04:18 -0400
commit2bae86ce54e83b43c9804db34794a9a6bafffe4f (patch)
treeb5a9470f9d4b03040bc6e081b79c7679330807b6 /libpurple/conversations.h
parentbd8d5f06c0df5e340afc5b72322f6f7bb8010b0d (diff)
downloadpidgin-2bae86ce54e83b43c9804db34794a9a6bafffe4f.tar.gz
Add many libpurple element-type annotations.
Also add transfer annotations at the same locations if necessary.
Diffstat (limited to 'libpurple/conversations.h')
-rw-r--r--libpurple/conversations.h6
1 files changed, 3 insertions, 3 deletions
diff --git a/libpurple/conversations.h b/libpurple/conversations.h
index 96cf18a34e..84b2c010ea 100644
--- a/libpurple/conversations.h
+++ b/libpurple/conversations.h
@@ -61,7 +61,7 @@ void purple_conversations_remove(PurpleConversation *conv);
*
* This list includes both IMs and chats.
*
- * Returns: (transfer none): A GList of all conversations.
+ * Returns: (element-type PurpleConversation) (transfer none): A GList of all conversations.
*/
GList *purple_conversations_get_all(void);
@@ -70,7 +70,7 @@ GList *purple_conversations_get_all(void);
*
* Returns a list of all IMs.
*
- * Returns: (transfer none): A GList of all IMs.
+ * Returns: (element-type PurpleIMConversation) (transfer none): All IMs.
*/
GList *purple_conversations_get_ims(void);
@@ -79,7 +79,7 @@ GList *purple_conversations_get_ims(void);
*
* Returns a list of all chats.
*
- * Returns: (transfer none): A GList of all chats.
+ * Returns: (element-type PurpleChatConversation) (transfer none): All chats.
*/
GList *purple_conversations_get_chats(void);