summaryrefslogtreecommitdiff
path: root/doc
diff options
context:
space:
mode:
authorGary Kramlich <grim@reaperworld.com>2023-01-06 02:12:12 -0600
committerGary Kramlich <grim@reaperworld.com>2023-01-06 02:12:12 -0600
commit96d40245d68d7d2bc59ef09edc17f56f05035b40 (patch)
treec10ff26f9ffec810eac3fd59c36e6f555072e319 /doc
parente544b5412649a0823fbb933406872984141e7106 (diff)
downloadpidgin-96d40245d68d7d2bc59ef09edc17f56f05035b40.tar.gz
Replace the account-actions-changed signal with an actions-changed signal on PurpleProtocolActions
We also propagate the PurpleProtocolActions::actions-changed signal from the PurpleProtocolManager::account-actions-changed signal if the protocol implements the PurpleProtocolActions interface. Testing Done: Build the docs and ran the unit tests. I also put a temporary action in the demo protocol plugin and called `purple_protocol_actions_changed` after the demo protocol connected. I will have another pull request that makes this a permenent action, but I want to convert the demo protocol plugin to subclass PurpleConnection before doing so as that will be accounting of everything *much* easier. Reviewed at https://reviews.imfreedom.org/r/2168/
Diffstat (limited to 'doc')
-rw-r--r--doc/reference/libpurple/signals_account.md19
1 files changed, 0 insertions, 19 deletions
diff --git a/doc/reference/libpurple/signals_account.md b/doc/reference/libpurple/signals_account.md
index 1ef3265fc2..e86992d289 100644
--- a/doc/reference/libpurple/signals_account.md
+++ b/doc/reference/libpurple/signals_account.md
@@ -6,7 +6,6 @@ Slug: account-signals
### Signal List
* [account-status-changed](#account-status-changed)
-* [account-actions-changed](#account-actions-changed)
* [account-signed-on](#account-signed-on)
* [account-signed-off](#account-signed-off)
@@ -75,24 +74,6 @@ Emitted when the status of an account changes (after the change).
----
-#### account-actions-changed
-
-```c
-void user_function(PurpleAccount *account, gpointer user_data);
-```
-
-Emitted when the account actions are changed after initial connection.
-
-**Parameters:**
-
-**account**
-: The account whose actions changed.
-
-**user_data**
-: User data set when the signal handler was connected.
-
-----
-
#### account-signed-on
```c