Re: gtk_container_remove may generate some noise for a GC

2017-06-25 Thread Paul Davis
On Sun, Jun 25, 2017 at 1:56 PM, Stefan Salewski wrote: > > action. And GTK is single threaded? Is that already preparation for a > multi-threaded GTK4? > like most GUI toolkits that had deep origins in the X Window world, GTK is single threaded. there is support for multiple

gtk_container_remove may generate some noise for a GC

2017-06-25 Thread Stefan Salewski
https://github.com/GNOME/gtk/blob/master/gtk/gtkcontainer.c void gtk_container_remove (GtkContainer *container,   GtkWidget*widget) {   g_return_if_fail (GTK_IS_CONTAINER (container));   g_return_if_fail (GTK_IS_WIDGET (widget));   g_object_ref (container);   g_object_ref