summaryrefslogtreecommitdiff
path: root/doc
diff options
context:
space:
mode:
authorElliott Sales de Andrade <quantum.analyst@gmail.com>2022-10-09 04:50:08 -0500
committerElliott Sales de Andrade <quantum.analyst@gmail.com>2022-10-09 04:50:08 -0500
commit2780c91567f25318f21fba71472d5e897735318f (patch)
tree2c21d80a97230c6a8913a529c39a878254de0a31 /doc
parentc925dae1f42d5aa4bc31726148e37da54c975640 (diff)
downloadpidgin-2780c91567f25318f21fba71472d5e897735318f.tar.gz
Remove unused notify signals
Testing Done: Compiled only, but I did grep for the old things. Reviewed at https://reviews.imfreedom.org/r/1917/
Diffstat (limited to 'doc')
-rw-r--r--doc/reference/libpurple/libpurple.toml.in1
-rw-r--r--doc/reference/libpurple/meson.build1
-rw-r--r--doc/reference/libpurple/signals_notify.md106
3 files changed, 0 insertions, 108 deletions
diff --git a/doc/reference/libpurple/libpurple.toml.in b/doc/reference/libpurple/libpurple.toml.in
index 786238a2f2..8e77d1b5af 100644
--- a/doc/reference/libpurple/libpurple.toml.in
+++ b/doc/reference/libpurple/libpurple.toml.in
@@ -47,7 +47,6 @@ content_files = [
"signals_conversation.md",
"signals_core.md",
"signals_jabber.md",
- "signals_notify.md",
"signals_savedstatus.md",
"signals_xfer.md",
"tut_c_plugins.md",
diff --git a/doc/reference/libpurple/meson.build b/doc/reference/libpurple/meson.build
index 2ec9bb737c..a65738ac54 100644
--- a/doc/reference/libpurple/meson.build
+++ b/doc/reference/libpurple/meson.build
@@ -9,7 +9,6 @@ libpurple_doc_content_files = [
'signals_conversation.md',
'signals_core.md',
'signals_jabber.md',
- 'signals_notify.md',
'signals_savedstatus.md',
'signals_xfer.md',
'tut_c_plugins.md',
diff --git a/doc/reference/libpurple/signals_notify.md b/doc/reference/libpurple/signals_notify.md
deleted file mode 100644
index 3fcff8fc48..0000000000
--- a/doc/reference/libpurple/signals_notify.md
+++ /dev/null
@@ -1,106 +0,0 @@
-Title: Notify Signals
-Slug: notify-signals
-
-## Notify Signals
-
-### Signal List
-
-* [displaying-userinfo](#displaying-userinfo)
-* [displaying-email-notification](#displaying-email-notification)
-* [displaying-emails-notification](#displaying-emails-notification)
-
-### Signal Details
-
-#### displaying-userinfo
-
-```c
-void user_function(PurpleAccount *account,
- const gchar *who,
- PurpleNotifyUserInfo *user_info,
- gpointer user_data);
-```
-
-Emitted before userinfo is handed to the UI to display. `user_info` can be manipulated via the PurpleNotifyUserInfo API in notify.c.
-
-> If adding a PurpleNotifyUserInfoEntry, be sure not to free it --
-> PurpleNotifyUserInfo assumes responsibility for its objects.
-
-**Parameters:**
-
-**account**
-: The account on which the info was obtained.
-
-**who**
-: The name of the buddy whose info is to be displayed.
-
-**user_info**
-: The information to be displayed, as PurpleNotifyUserInfoEntry objects.
-
-**user_data**
-: user data set when the signal handler was connected.
-
-----
-
-#### displaying-email-notification
-
-```c
-void user_function(const gchar *subject,
- const gchar *from,
- const gchar *to,
- const gchar *url,
- gpointer user_data);
-```
-
-Emitted before notification of a single email is handed to the UI to display.
-
-**Parameters:**
-
-**subject**
-: Subject of email being notified of.
-
-**from**
-: Who the email is from.
-
-**to**
-: Who the email is to.
-
-**url**
-: A url to view the email.
-
-**user_data**
-: user data set when the signal handler was connected.
-
-----
-
-#### displaying-emails-notification
-
-```c
-void user_function(const gchar **subjects,
- const gchar **froms,
- const gchar **tos,
- const gchar **urls,
- guint count,
- gpointer user_data)
-```
-
-Emitted before notification of multiple emails is handed to the UI to display.
-
-**Parameters:**
-
-**subjects**
-: Subjects of emails being notified of.
-
-**froms**
-: Who the emails are from.
-
-**tos**
-: Who the emails are to.
-
-**urls**
-: The urls to view the emails.
-
-**count**
-: Number of emails being notified of.
-
-**user_data**
-: user data set when the signal handler was connected.