mirror of
https://gitlab.linphone.org/BC/public/linphone-iphone.git
synced 2026-05-03 20:46:28 +00:00
remove g_list_free_full(), that requires glib>2.26
This commit is contained in:
parent
8e9da52a9c
commit
52da7058c6
1 changed files with 2 additions and 1 deletions
|
|
@ -352,7 +352,8 @@ static void linphone_gtk_configure_window(GtkWidget *w, const char *window_name)
|
|||
pbuf_list = g_list_append(pbuf_list, pbuf_32);
|
||||
gtk_window_set_icon_list(GTK_WINDOW(w), pbuf_list);
|
||||
gtk_window_set_default_icon_list(pbuf_list);
|
||||
g_list_free_full(pbuf_list, g_object_unref);
|
||||
g_list_foreach(pbuf_list, (GFunc)g_object_unref,NULL);
|
||||
g_list_free(pbuf_list);
|
||||
}
|
||||
}
|
||||
}
|
||||
|
|
|
|||
Loading…
Add table
Reference in a new issue