summaryrefslogtreecommitdiff
path: root/libpurple/purpleconversation.h
diff options
context:
space:
mode:
authorGary Kramlich <grim@reaperworld.com>2023-02-20 08:33:48 -0600
committerGary Kramlich <grim@reaperworld.com>2023-02-20 08:33:48 -0600
commita0955b17df3c051f2d38929b252917345f30c5f2 (patch)
treea1bc52aa4c9c593aa471834c8f418054eed307f0 /libpurple/purpleconversation.h
parent3d9a104a8649ae92e17a07779f82b7facdb7835c (diff)
downloadpidgin-a0955b17df3c051f2d38929b252917345f30c5f2.tar.gz
Remove conversation's internal history api as it will be replace by the new history api
Testing Done: Joined a MUC and verified that that history was still displayed and that sending messages and stuff worked. Reviewed at https://reviews.imfreedom.org/r/2238/
Diffstat (limited to 'libpurple/purpleconversation.h')
-rw-r--r--libpurple/purpleconversation.h21
1 files changed, 0 insertions, 21 deletions
diff --git a/libpurple/purpleconversation.h b/libpurple/purpleconversation.h
index 358a776c66..2cfd4a80fe 100644
--- a/libpurple/purpleconversation.h
+++ b/libpurple/purpleconversation.h
@@ -314,27 +314,6 @@ gboolean purple_conversation_has_focus(PurpleConversation *conv);
void purple_conversation_update(PurpleConversation *conv, PurpleConversationUpdateType type);
/**
- * purple_conversation_get_message_history:
- * @conv: The conversation
- *
- * Retrieve the message history of a conversation.
- *
- * Returns: (element-type PurpleMessage) (transfer none):
- * A GList of PurpleMessage's. You must not modify the
- * list or the data within. The list contains the newest message at
- * the beginning, and the oldest message at the end.
- */
-GList *purple_conversation_get_message_history(PurpleConversation *conv);
-
-/**
- * purple_conversation_clear_message_history:
- * @conv: The conversation
- *
- * Clear the message history of a conversation.
- */
-void purple_conversation_clear_message_history(PurpleConversation *conv);
-
-/**
* purple_conversation_send_confirm:
* @conv: The conversation.
* @message: The message to send.