Re: how to free GList

2006-09-12 Thread Yash Kumar Gupta
Use g_list_foreach() to free the data associcated with each node. In second argument here, you need to supply a GFunc which will free the data associated with each node. Then use g_list_free to free the head of the list. -Yash On 9/12/06, shibu Alampatta <[EMAIL PROTECTED]> wrote: > > Hi all, > >

Re: GTK pipe

2005-12-14 Thread Yash Kumar Gupta
Hi, If you are trying this on NLD(novel linux desktop), I suspect this may be the solution. Before the point at which you are creating the file_chooser_dialog, insert the following statement: sighandler_t oldhandler = signal(SIGCHLD, SIG_DFL) and the point after which you destroy the dialog, ins