From: Michael Orlitzky Date: Mon, 8 Feb 2021 12:17:28 +0000 (-0500) Subject: panel-plugin/xfce4-hdaps.c: replace panel_slice_free with g_slice_free. X-Git-Tag: v1.0.2~2 X-Git-Url: http://gitweb.michael.orlitzky.com/?p=xfce4-hdaps.git;a=commitdiff_plain;h=b9ce0d116a61d4c0e000672a6efbc235db709f75;hp=ab31414f32e0c386fb8d3926e805395a701fe6a3 panel-plugin/xfce4-hdaps.c: replace panel_slice_free with g_slice_free. Same deal as with panel_slice_new0/g_slice_new0. Apparently this was deprecated and is now gone in 4.16. --- diff --git a/panel-plugin/xfce4-hdaps.c b/panel-plugin/xfce4-hdaps.c index 59581df..ac8b2d7 100644 --- a/panel-plugin/xfce4-hdaps.c +++ b/panel-plugin/xfce4-hdaps.c @@ -311,7 +311,7 @@ static void hdaps_free(XfcePanelPlugin *plugin, } /* ...and finally free the plugin structure. */ - panel_slice_free(HdapsPlugin, hdaps); + g_slice_free(HdapsPlugin, hdaps); }