--- a/libpurple/action.c Tue Jul 23 11:52:27 2019 -0500 +++ b/libpurple/action.c Sat Aug 03 04:06:20 2019 -0400 @@ -24,7 +24,6 @@ GCallback callback; gpointer data; GList *children; - gchar *stock_icon; }; /****************************************************************************** @@ -40,7 +39,6 @@ act->callback = callback; act->data = data; act->children = children; - act->stock_icon = NULL; return act; } @@ -51,7 +49,6 @@ purple_action_menu_set_children(act, NULL); - g_free(act->stock_icon); g_free(act->label); g_free(act); } @@ -116,11 +113,6 @@ act->children = children; } -const gchar * -purple_action_menu_get_stock_icon(PurpleActionMenu *act) { - return act->stock_icon; -} - /****************************************************************************** * Protocol Action API *****************************************************************************/