summaryrefslogtreecommitdiff
path: root/doc
diff options
context:
space:
mode:
authorGary Kramlich <grim@reaperworld.com>2022-09-15 23:33:56 -0500
committerGary Kramlich <grim@reaperworld.com>2022-09-15 23:33:56 -0500
commit446ed01270a25d90c981d9f240a80abd7a56beff (patch)
tree95f8a9f1076982d507fa0dd87e67e560a8baadb5 /doc
parent3e0cd8e0af0e58357f87598f4201111f1d8a4126 (diff)
downloadpidgin-446ed01270a25d90c981d9f240a80abd7a56beff.tar.gz
Remove all the code from the old account editor
Testing Done: Opened the account editor, verified everything looked right. Reviewed at https://reviews.imfreedom.org/r/1772/
Diffstat (limited to 'doc')
-rw-r--r--doc/reference/pidgin/meson.build1
-rw-r--r--doc/reference/pidgin/pidgin.toml.in1
-rw-r--r--doc/reference/pidgin/signals_gtkaccount.md21
3 files changed, 0 insertions, 23 deletions
diff --git a/doc/reference/pidgin/meson.build b/doc/reference/pidgin/meson.build
index c3a54d6ce1..94e54063a8 100644
--- a/doc/reference/pidgin/meson.build
+++ b/doc/reference/pidgin/meson.build
@@ -1,5 +1,4 @@
pidgin_doc_content_files = [
- 'signals_gtkaccount.md',
'signals_gtkblist.md',
'signals_gtkconv.md',
]
diff --git a/doc/reference/pidgin/pidgin.toml.in b/doc/reference/pidgin/pidgin.toml.in
index 2112d140d1..b2f20bd269 100644
--- a/doc/reference/pidgin/pidgin.toml.in
+++ b/doc/reference/pidgin/pidgin.toml.in
@@ -57,7 +57,6 @@ base_url = "https://keep.imfreedom.org/pidgin/pidgin/file/default/"
[extra]
# The same order will be used when generating the index
content_files = [
- "signals_gtkaccount.md",
"signals_gtkblist.md",
"signals_gtkconv.md",
]
diff --git a/doc/reference/pidgin/signals_gtkaccount.md b/doc/reference/pidgin/signals_gtkaccount.md
deleted file mode 100644
index 617397cc14..0000000000
--- a/doc/reference/pidgin/signals_gtkaccount.md
+++ /dev/null
@@ -1,21 +0,0 @@
-Title: Account Signals
-Slug: account-signals
-
-## Account Signals
-
-### account-modified
-
-```c
-void user_function(PurpleAccount *account, gpointer user_data);
-```
-
-Emitted when the settings for an account have been changed and saved.
-
-**Parameters:**
-
-**account**
-: The account that has been modified.
-
-**user_data**
-: User data set when the signal handler was connected.
-