summaryrefslogtreecommitdiff
path: root/doc
diff options
context:
space:
mode:
authorGary Kramlich <grim@reaperworld.com>2022-11-04 23:58:18 -0500
committerGary Kramlich <grim@reaperworld.com>2022-11-04 23:58:18 -0500
commitece630e3b63ac55f7d5b5582c259c5865f55eff0 (patch)
tree79771a0510ca672b033ea96fa49a3087ae0ca3fe /doc
parentd56ca463f4e91163af4d81dc208d180f376b6ad4 (diff)
downloadpidgin-ece630e3b63ac55f7d5b5582c259c5865f55eff0.tar.gz
Propagate the PurpleAccount::notify signal via PurpleAccountManager::account-changed
This new signal supports details and works just like notify does on the account instances, but it will be emitted for any account that the manager instance knows about which means we can remove the old purple signals. Testing Done: Enabled and disabled accounts in Pidgin via the menus to make sure things were working right, and verified via the console that the accounts were being enabled and disabled. Ran Finch, but I ran into the infinite loop bug in the buddy list clean when disabling an account which is a known issue. Reviewed at https://reviews.imfreedom.org/r/2032/
Diffstat (limited to 'doc')
-rw-r--r--doc/reference/libpurple/signals_account.md38
1 files changed, 0 insertions, 38 deletions
diff --git a/doc/reference/libpurple/signals_account.md b/doc/reference/libpurple/signals_account.md
index 1c94af687d..90420ac245 100644
--- a/doc/reference/libpurple/signals_account.md
+++ b/doc/reference/libpurple/signals_account.md
@@ -7,8 +7,6 @@ Slug: account-signals
* [account-created](#account-created)
* [account-destroying](#account-destroying)
-* [account-disabled](#account-disabled)
-* [account-enabled](#account-enabled)
* [account-status-changed](#account-status-changed)
* [account-actions-changed](#account-actions-changed)
* [account-error-changed](#account-error-changed)
@@ -53,42 +51,6 @@ Emitted when an account is about to be destroyed.
----
-#### account-disabled
-
-```c
-void user_function(PurpleAccount *account, gpointer user_data);
-```
-
-Emitted when an account is disabled.
-
-**Parameters:**
-
-**account**
-: The account that was disabled.
-
-**user_data**
-: User data set when the signal handler was connected.
-
-----
-
-#### account-enabled
-
-```c
-void user_function(PurpleAccount *account, gpointer user_data);
-```
-
-Emitted when an account is enabled.
-
-**Parameters**:
-
-**account**
-: The account that was enabled.
-
-**user_data**
-: User data set when the signal handler was connected.
-
-----
-
#### account-status-changed
```c