From bc48c3e4443a5d7e2fc39f1cd08dd2fbb26effb3 Mon Sep 17 00:00:00 2001 From: rbuj Date: Sun, 3 Mar 2019 10:43:16 +0100 Subject: Fix -Werror=cast-function-type with GCC 8 In addition, it removes unnecessary function type casts like: (GDestroyNotify) g_object_unref (GDestroyNotify) g_free --- baobab/src/baobab-remote-connect-dialog.c | 8 +++++++- 1 file changed, 7 insertions(+), 1 deletion(-) (limited to 'baobab/src/baobab-remote-connect-dialog.c') diff --git a/baobab/src/baobab-remote-connect-dialog.c b/baobab/src/baobab-remote-connect-dialog.c index c78725ca..6c901f3d 100644 --- a/baobab/src/baobab-remote-connect-dialog.c +++ b/baobab/src/baobab-remote-connect-dialog.c @@ -383,6 +383,12 @@ baobab_remote_connect_dialog_class_init (BaobabRemoteConnectDialogClass *class) gobject_class = G_OBJECT_CLASS (class); gobject_class->finalize = baobab_remote_connect_dialog_finalize; } +static void +destroy_label (GtkWidget *widget, + gpointer user_data) +{ + gtk_widget_destroy (widget); +} static void setup_for_type (BaobabRemoteConnectDialog *dialog) @@ -429,7 +435,7 @@ setup_for_type (BaobabRemoteConnectDialog *dialog) } /* Destroy all labels */ gtk_container_foreach (GTK_CONTAINER (dialog->details->grid), - (GtkCallback) gtk_widget_destroy, NULL); + destroy_label, NULL); i = 1; grid = dialog->details->grid; -- cgit v1.2.1