Re: [java-gnome-hackers] Welcome back, Philip!
Brought to you by:
afcowie
From: Tom B. <Tom...@Su...> - 2003-02-27 18:59:28
|
On Thu, 2003-02-27 at 10:07, Tom Ball wrote: > If you are looking for a hard problem, Mark and I are seeing lots of > assertion failures. The ones on my system are caused when > org_gnu_glib_GObject.c tries to copy a widget parameter (Containers fire > signals with child parameters) in jg_signal_cb in the "default" case > block. If you can shed any light here, that would be great. Fixed: diff -r1.7 org_gnu_glib_GObject.c 198c198 < *(void **) &peer = g_value_get_pointer(¶m_values[i]); --- > *(void **) &peer = g_value_get_object(¶m_values[i]); I guess GLib-2.0 has stronger type checking... Tom |