pidgin/pidgin

Parents e315e317c2de
Children d19ef491d1aa
Add the unload parameter to a few plugins that I missed on the gplugin 0.35.0 update

Testing Done:
Compiled under ubuntu to verify that unity compiled without error.

Reviewed at https://reviews.imfreedom.org/r/1003/
--- a/pidgin/plugins/notify.c Wed Oct 06 04:12:07 2021 -0500
+++ b/pidgin/plugins/notify.c Thu Oct 07 22:24:25 2021 -0500
@@ -959,7 +959,7 @@
}
static gboolean
-notify_unload(GPluginPlugin *plugin, GError **error)
+notify_unload(GPluginPlugin *plugin, gboolean shutdown, GError **error)
{
GList *convs = purple_conversations_get_all();
--- a/pidgin/plugins/spellchk.c Wed Oct 06 04:12:07 2021 -0500
+++ b/pidgin/plugins/spellchk.c Thu Oct 07 22:24:25 2021 -0500
@@ -2317,7 +2317,7 @@
}
static gboolean
-spell_check_unload(GPluginPlugin *plugin, GError **error)
+spell_check_unload(GPluginPlugin *plugin, gboolean shutdown, GError **error)
{
GList *convs;
--- a/pidgin/plugins/transparency.c Wed Oct 06 04:12:07 2021 -0500
+++ b/pidgin/plugins/transparency.c Thu Oct 07 22:24:25 2021 -0500
@@ -632,7 +632,7 @@
}
static gboolean
-transparency_unload(GPluginPlugin *plugin, GError **error) {
+transparency_unload(GPluginPlugin *plugin, gboolean shutdown, GError **error) {
GtkWidget *window = NULL;
purple_debug_info(WINTRANS_PLUGIN_ID, "Unloading transparency plugin\n");
--- a/pidgin/plugins/unity.c Wed Oct 06 04:12:07 2021 -0500
+++ b/pidgin/plugins/unity.c Thu Oct 07 22:24:25 2021 -0500
@@ -614,7 +614,7 @@
}
static gboolean
-unity_unload(GPluginPlugin *plugin, GError **error) {
+unity_unload(GPluginPlugin *plugin, gboolean shutdown, GError **error) {
GList *convs = NULL;
PurpleConversationManager *manager = NULL;