1 2 3 4 5 6 7 8 9 10
|
// this is my signal connect
g_signal_connect( GTK_OBJECT( button_help_event ), "button_press_event", G_CALLBACK( button_help_fkt ), NULL );
// here i want to call the signal by hand
g_signal_emit_by_name( G_OBJECT(button_help_event),"button_press_event");
// and this is the warning
(test:5862): GLib-GObject-WARNING **: gsignal.c:2217: value location for `gboolean' passed as NULL
|