Re: passing on signals

2003-10-02 Thread edscott wilson garcia
On Tue, 2003-09-30 at 20:09, edscott wilson garcia wrote: Hi, Does anybody know the correct way to pass on keypressed signals received by one widget to another? Either of the following two lines causes gtk to segfault when signal received by GtkCombo is passed to GtkEntry:

Re: passing on signals

2003-10-02 Thread Sven Neumann
Hi, edscott wilson garcia [EMAIL PROTECTED] writes: Does anybody know the correct way to pass on keypressed signals received by one widget to another? Either of the following two lines causes gtk to segfault when signal received by GtkCombo is passed to GtkEntry: gtk_signal_emit_by_name

Re: passing on signals

2003-10-02 Thread edscott wilson garcia
Thanks for the clarification, Sven. I suppose the additional parameter after event will make the call blocking so that the return value of the signal handler can be returned there, and if there is no additional parameter (or set to NULL) the function will just toss the signal on to the queue to

Re: passing on signals

2003-10-02 Thread Sven Neumann
Hi, edscott wilson garcia [EMAIL PROTECTED] writes: I suppose the additional parameter after event will make the call blocking so that the return value of the signal handler can be returned there, and if there is no additional parameter (or set to NULL) the function will just toss the signal

passing on signals

2003-09-30 Thread edscott wilson garcia
Hi, Does anybody know the correct way to pass on keypressed signals received by one widget to another? Either of the following two lines causes gtk to segfault when signal received by GtkCombo is passed to GtkEntry: gtk_signal_emit_by_name (GTK_OBJECT (entry),