--- a/finch/gntblist.c Mon Sep 12 22:10:30 2022 -0500 +++ b/finch/gntblist.c Mon Sep 12 22:18:06 2022 -0500 @@ -2227,14 +2227,19 @@ static void plugin_action(GntMenuItem *item, gpointer data) { + /* TODO: Convert to GAction/GMenu. */ +#if 0 PurplePluginAction *action = data; if (action && action->callback) action->callback(action); +#endif } static void build_plugin_actions(GntMenuItem *item, PurplePlugin *plugin) { + /* TODO: port to GAction/GMenu. */ +#if 0 GntWidget *sub = gnt_menu_new(GNT_MENU_POPUP); PurplePluginActionsCb actions_cb; GList *actions; @@ -2257,6 +2262,7 @@ action, (GDestroyNotify)purple_plugin_action_free); } } +#endif } static void @@ -2359,6 +2365,8 @@ sub = gnt_menu_new(GNT_MENU_POPUP); gnt_menuitem_set_submenu(plg, GNT_MENU(sub)); + /* TODO: port to GAction/GMenu. */ +#if 0 for (iter = purple_plugins_get_loaded(); iter; iter = iter->next) { PurplePlugin *plugin = iter->data; PurplePluginInfo *info = purple_plugin_get_info(plugin); @@ -2372,6 +2380,7 @@ gnt_menu_add_item(GNT_MENU(sub), item); build_plugin_actions(item, plugin); } +#endif } static void