Tue, 21 Feb 2023 22:06:47 -0600
Mark unused parameters as such for all of the pidgin plugins
Testing Done:
Turned the warning level up to 2, compiled, and verified the warnings were gone.
Reviewed at https://reviews.imfreedom.org/r/2252/
<?xml version="1.0" encoding="utf-8"?> <schemalist> <schema path="/pidgin/plugins/notify/" id="im.pidgin.Pidgin.plugin.Notify"> <key name="type-im" type="b"> <default>true</default> <summary>Notify IMs</summary> <description> Notify for IM windows. </description> </key> <key name="type-im-sys" type="b"> <default>false</default> <summary>Notify IM system messages</summary> <description> Notify for system messages in IM windows. </description> </key> <key name="type-chat" type="b"> <default>false</default> <summary>Notify chats</summary> <description> Notify for chat windows. </description> </key> <key name="type-chat-nick" type="b"> <default>false</default> <summary>Notify for username only</summary> <description> Notify for chat windows only when someone says your username. </description> </key> <key name="type-chat-sys" type="b"> <default>false</default> <summary>Notify chat system messages</summary> <description> Notify for system messages in chat windows. </description> </key> <key name="type-focused" type="b"> <default>false</default> <summary>Notify focused windows</summary> <description> Notify even for focused windows. </description> </key> <key name="method-string" type="b"> <default>false</default> <summary>Notify in window title</summary> <description> Prepend a string into window title for notification. </description> </key> <key name="title-string" type="s"> <default>"(*)"</default> <summary>Window title prefix</summary> <description> String to prepend into window title. </description> </key> <key name="method-urgent" type="b"> <default>false</default> <summary>Notify via urgency</summary> <description> Set window manager "URGENT" hint when on X11. If not on X11, flashes the window instead. </description> </key> <key name="method-count" type="b"> <default>false</default> <summary>Notify message count via title</summary> <description> Insert count of new messages into window title. </description> </key> <key name="method-count-xprop" type="b"> <default>false</default> <summary>Notify message count via X property</summary> <description> Insert count of new messages into X property (only available on X11). </description> </key> <key name="method-raise" type="b"> <default>false</default> <summary>Raise conversation window</summary> <description> Notify by requesting that the conversation window is raised. </description> </key> <key name="method-present" type="b"> <default>false</default> <summary>Present conversation window</summary> <description> Notify by presenting the conversation window. </description> </key> <key name="notify-focus" type="b"> <default>true</default> <summary>Clear on focus</summary> <description> Remove notification when conversation window gains focus. </description> </key> <key name="notify-click" type="b"> <default>false</default> <summary>Clear on click</summary> <description> Remove notification when conversation window receives a click. </description> </key> <key name="notify-type" type="b"> <default>true</default> <summary>Clear on type</summary> <description> Remove notification when typing in conversation window. </description> </key> <key name="notify-send" type="b"> <default>true</default> <summary>Clear on send</summary> <description> Remove notification when a message gets sent. </description> </key> <key name="notify-switch" type="b"> <default>true</default> <summary>Clear on conversation switch</summary> <description> Remove notification when window switch to this conversation. </description> </key> </schema> </schemalist>