summaryrefslogtreecommitdiff
path: root/doc
diff options
context:
space:
mode:
authorElliott Sales de Andrade <quantum.analyst@gmail.com>2022-10-09 04:48:50 -0500
committerElliott Sales de Andrade <quantum.analyst@gmail.com>2022-10-09 04:48:50 -0500
commitc925dae1f42d5aa4bc31726148e37da54c975640 (patch)
tree598dc9669ff598e98aec409d9f2fca7afe033663 /doc
parentf9282b85d1475312d6da7831cf2b057ad833b379 (diff)
downloadpidgin-c925dae1f42d5aa4bc31726148e37da54c975640.tar.gz
Remove attention conversation signals
Testing Done: Compiled only. Reviewed at https://reviews.imfreedom.org/r/1916/
Diffstat (limited to 'doc')
-rw-r--r--doc/reference/libpurple/signals_conversation.md64
1 files changed, 0 insertions, 64 deletions
diff --git a/doc/reference/libpurple/signals_conversation.md b/doc/reference/libpurple/signals_conversation.md
index 6d29fd5580..80ad60026e 100644
--- a/doc/reference/libpurple/signals_conversation.md
+++ b/doc/reference/libpurple/signals_conversation.md
@@ -38,8 +38,6 @@ Slug: conversation-signals
* [chat-topic-changed](#chat-topic-changed)
* [cleared-message-history](#cleared-message-history)
* [conversation-extended-menu](#conversation-extended-menu)
-* [sent-attention](#sent-attention)
-* [got-attention](#got-attention)
### Signal Details
@@ -1002,65 +1000,3 @@ Emitted when the conversation history is cleared.
**user_data**
: user data set when the signal handler was connected.
-
-----
-
-#### sent-attention
-
-```c
-void user_function(PurpleAccount *account,
- const gchar *who,
- PurpleConversation *conv,
- guint type,
- gpointer user_data);
-```
-
-Emitted when receiving an attention message (buzz, nudge, etc.).
-
-**Parameters:**
-
-**account**
-: The account.
-
-**who**
-: The name of the person receiving the attention.
-
-**conv**
-: The conversation.
-
-**type**
-: The attention type (an index starting at 0).
-
-**user_data**
-: user data set when the signal handler was connected.
-
-----
-
-#### got-attention
-
-```c
-void user_function(PurpleAccount *account,
- const gchar *who,
- PurpleConversation *conv,
- guint type,
- gpointer user_data);
-```
-
-Emitted when receiving an attention message (buzz, nudge, etc.).
-
-**Parameters:**
-
-**account**
-: The account.
-
-**who**
-: The name of the person sending the attention.
-
-**conv**
-: The conversation.
-
-**type**
-: The attention type (an index starting at 0).
-
-**user_data**
-: user data set when the signal handler was connected.