Re: emits a signal?

2003-03-25 Thread Evan Martin
is a function g_signal_emit(). Look at the gobject docs. -- Evan Martin [EMAIL PROTECTED] http://neugierig.org ___ gtk-list mailing list [EMAIL PROTECTED] http://mail.gnome.org/mailman/listinfo/gtk-list

Re: signals connection

2003-03-20 Thread Evan Martin
; is destroyed, you can do this: g_signal_connect_swapped(G_OBJECT(window), "destroy", G_CALLBACK(g_free), someobject); Because of the _swapped, "someobject" will be passed as the first argument to g_free() so you can use g_free as a callback directly instead of anoth