summaryrefslogtreecommitdiff
path: root/libpurple/conversations.h
diff options
context:
space:
mode:
authorGary Kramlich <grim@reaperworld.com>2021-07-26 04:20:08 -0500
committerGary Kramlich <grim@reaperworld.com>2021-07-26 04:20:08 -0500
commit5dafad5f1d1c2259fca72a52be476b14b3c2015d (patch)
tree3ad709c030faa5a2688b7677229f23f4641c5572 /libpurple/conversations.h
parentb73c224a3a208e69c4ce432e310fd766c1abe987 (diff)
downloadpidgin-5dafad5f1d1c2259fca72a52be476b14b3c2015d.tar.gz
remove the purple_conversations_ management api
Testing Done: compiled and built the docs Reviewed at https://reviews.imfreedom.org/r/842/
Diffstat (limited to 'libpurple/conversations.h')
-rw-r--r--libpurple/conversations.h79
1 files changed, 0 insertions, 79 deletions
diff --git a/libpurple/conversations.h b/libpurple/conversations.h
index f59a70733e..ed1bf528a2 100644
--- a/libpurple/conversations.h
+++ b/libpurple/conversations.h
@@ -43,85 +43,6 @@ G_BEGIN_DECLS
/**************************************************************************/
/**
- * purple_conversations_add:
- * @conv: The conversation.
- *
- * Adds a conversation to the list of conversations.
- */
-G_DEPRECATED_FOR(purple_conversation_manager_register)
-void purple_conversations_add(PurpleConversation *conv);
-
-/**
- * purple_conversations_remove:
- * @conv: The conversation.
- *
- * Removes a conversation from the list of conversations.
- */
-G_DEPRECATED_FOR(purple_conversation_manager_unregister)
-void purple_conversations_remove(PurpleConversation *conv);
-
-/**
- * purple_conversations_get_all:
- *
- * Returns a list of all conversations.
- *
- * This list includes both IMs and chats.
- *
- * Returns: (element-type PurpleConversation) (transfer none): A GList of all conversations.
- */
-G_DEPRECATED_FOR(purple_conversation_manager_get_all)
-GList *purple_conversations_get_all(void);
-
-/**
- * purple_conversations_find_with_account:
- * @name: The name of the conversation.
- * @account: The account associated with the conversation.
- *
- * Finds a conversation of any type with the specified name and Purple account.
- *
- * Returns: (transfer none): The conversation if found, or %NULL otherwise.
- */
-G_DEPRECATED_FOR(purple_conversation_manager_find)
-PurpleConversation *purple_conversations_find_with_account(const char *name,
- PurpleAccount *account);
-
-/**
- * purple_conversations_find_im_with_account:
- * @name: The name of the conversation.
- * @account: The account associated with the conversation.
- *
- * Finds an IM with the specified name and Purple account.
- *
- * Returns: (transfer none): The conversation if found, or %NULL otherwise.
- */
-G_DEPRECATED_FOR(purple_conversation_manager_find_im)
-PurpleConversation *purple_conversations_find_im_with_account(const char *name, PurpleAccount *account);
-
-/**
- * purple_conversations_find_chat_with_account:
- * @name: The name of the conversation.
- * @account: The account associated with the conversation.
- *
- * Finds a chat with the specified name and Purple account.
- *
- * Returns: (transfer none): The conversation if found, or %NULL otherwise.
- */
-G_DEPRECATED_FOR(purple_conversation_manager_find_chat)
-PurpleConversation *purple_conversations_find_chat_with_account(const char *name, PurpleAccount *account);
-
-/**
- * purple_conversations_find_chat:
- * @gc: The purple_connection.
- * @id: The chat ID.
- *
- * Finds a chat with the specified chat ID.
- *
- * Returns: (transfer none): The chat conversation.
- */
-G_DEPRECATED_FOR(purple_conversation_manager_find_chat_by_id)
-PurpleConversation *purple_conversations_find_chat(PurpleConnection *gc, int id);
-
-/**
* purple_conversations_set_ui_ops:
* @ops: The UI conversation operations structure.
*