pidgin/pidgin

243322637473
Parents 2ba47ec94b05
Children 60e003f0c3fc
Remove the documentation for command signals

This was missed in /r/3141

Testing Done:
Called in a fearsome fighting team!

Reviewed at https://reviews.imfreedom.org/r/3162/
--- a/doc/reference/libpurple/libpurple.toml.in Mon May 06 22:23:21 2024 -0500
+++ b/doc/reference/libpurple/libpurple.toml.in Mon May 06 22:27:40 2024 -0500
@@ -38,7 +38,6 @@
# The same order will be used when generating the index
content_files = [
"contributing.md",
- "signals_cmd.md",
"signals_connection.md",
"signals_core.md",
"tut_c_plugins.md",
--- a/doc/reference/libpurple/meson.build Mon May 06 22:23:21 2024 -0500
+++ b/doc/reference/libpurple/meson.build Mon May 06 22:27:40 2024 -0500
@@ -1,6 +1,5 @@
libpurple_doc_content_files = [
'contributing.md',
- 'signals_cmd.md',
'signals_connection.md',
'signals_core.md',
'tut_c_plugins.md',
--- a/doc/reference/libpurple/signals_cmd.md Mon May 06 22:23:21 2024 -0500
+++ /dev/null Thu Jan 01 00:00:00 1970 +0000
@@ -1,54 +0,0 @@
-Title: Command Signals
-Slug: command-signals
-
-## Command Signals
-
-### Signal List
-
-* [cmd-added](#cmd-added)
-* [cmd-removed](#cmd-removed)
-
-### Signal Details
-
-#### cmd-added
-
-```c
-void user_function(const gchar *command,
- PurpleCmdPriority priority,
- PurpleCmdFlag flag,
- gpointer user_data);
-```
-
-Emitted when a new command is added.
-
-**Parameters:**
-
-**command**
-: The new command.
-
-**priority**
-: The priority of the new command.
-
-**flag**
-: The command flags.
-
-**user_data**
-: User data set when the signal handler was connected.
-
-----
-
-#### cmd-removed
-
-```c
-void user_function(const gchar *command, gpointer user_data);
-```
-
-Emitted when a command is removed.
-
-**Parameters:**
-
-**command**
-: The removed command.
-
-**user_data**
-: User data set when the signal handler was connected.