> apparently g_initially_unowned_get_type returns a GType but I suppose > it's a typedef for #long as says Funcs.st ? > > !GInitiallyUnowned class methodsFor: 'C call-outs'! > getType > <cCall: 'g_initially_unowned_get_type' returning: #long > args: #( )>! ! >
It looks like you don't have a g_initially_unowned_get_type in your GTK+ library. It might be that you're using different versions of headers (to generate the st files) and libraries (to link). Try this: otool -L .libs/gst-gtk.so|grep gobject nm OUTPUT-OF-OTOOL |grep g_init and compare with the paths in packages/gtk/order. Paolo _______________________________________________ help-smalltalk mailing list [email protected] http://lists.gnu.org/mailman/listinfo/help-smalltalk
