summaryrefslogtreecommitdiff
path: root/libpurple/conversations.h
diff options
context:
space:
mode:
authorElliott Sales de Andrade <qulogic@pidgin.im>2019-08-03 02:33:05 -0400
committerElliott Sales de Andrade <qulogic@pidgin.im>2019-08-03 02:33:05 -0400
commitc898d03ef71e89fe59841dfc6288efa1a7aaa14d (patch)
tree0ac7c7c7609ca36923387bba51e2d9a55d0b0e5b /libpurple/conversations.h
parent8c9a488e2f2d07461f0141c37c0499937966addd (diff)
downloadpidgin-c898d03ef71e89fe59841dfc6288efa1a7aaa14d.tar.gz
Add missing transfer annotations.
Diffstat (limited to 'libpurple/conversations.h')
-rw-r--r--libpurple/conversations.h8
1 files changed, 4 insertions, 4 deletions
diff --git a/libpurple/conversations.h b/libpurple/conversations.h
index 098eac1f74..cded479374 100644
--- a/libpurple/conversations.h
+++ b/libpurple/conversations.h
@@ -90,7 +90,7 @@ GList *purple_conversations_get_chats(void);
*
* Finds a conversation of any type with the specified name and Purple account.
*
- * Returns: The conversation if found, or %NULL otherwise.
+ * Returns: (transfer none): The conversation if found, or %NULL otherwise.
*/
PurpleConversation *purple_conversations_find_with_account(const char *name,
PurpleAccount *account);
@@ -102,7 +102,7 @@ PurpleConversation *purple_conversations_find_with_account(const char *name,
*
* Finds an IM with the specified name and Purple account.
*
- * Returns: The conversation if found, or %NULL otherwise.
+ * Returns: (transfer none): The conversation if found, or %NULL otherwise.
*/
PurpleIMConversation *purple_conversations_find_im_with_account(const char *name,
PurpleAccount *account);
@@ -114,7 +114,7 @@ PurpleIMConversation *purple_conversations_find_im_with_account(const char *name
*
* Finds a chat with the specified name and Purple account.
*
- * Returns: The conversation if found, or %NULL otherwise.
+ * Returns: (transfer none): The conversation if found, or %NULL otherwise.
*/
PurpleChatConversation *purple_conversations_find_chat_with_account(const char *name,
PurpleAccount *account);
@@ -126,7 +126,7 @@ PurpleChatConversation *purple_conversations_find_chat_with_account(const char *
*
* Finds a chat with the specified chat ID.
*
- * Returns: The chat conversation.
+ * Returns: (transfer none): The chat conversation.
*/
PurpleChatConversation *purple_conversations_find_chat(const PurpleConnection *gc, int id);