diff options
author | rbuj <[email protected]> | 2019-03-03 10:43:16 +0100 |
---|---|---|
committer | Robert Antoni Buj Gelonch <[email protected]> | 2019-04-09 21:38:19 +0200 |
commit | 13a56b2801b8a562519d5c90fb038d3d4f5d0f74 (patch) | |
tree | 324069227f0c0ff75d56cdf66d2784362c719408 /baobab/src/baobab-remote-connect-dialog.c | |
parent | fccbbbcb04d5173ffae27fcbdabb00128c330c20 (diff) | |
download | mate-utils-13a56b2801b8a562519d5c90fb038d3d4f5d0f74.tar.bz2 mate-utils-13a56b2801b8a562519d5c90fb038d3d4f5d0f74.tar.xz |
Fix -Werror=cast-function-type with GCC 8
In addition, it removes unnecessary function type casts like:
(GDestroyNotify) g_object_unref
(GDestroyNotify) g_free
Diffstat (limited to 'baobab/src/baobab-remote-connect-dialog.c')
-rw-r--r-- | baobab/src/baobab-remote-connect-dialog.c | 8 |
1 files changed, 7 insertions, 1 deletions
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; |