Re: call back problems

2005-11-07 Thread Olivier Sessink
Dennis Morgan wrote: > Hi Olivier, > Can you explain something. the g_signal_handler_block function, am i right in > thinking > it goes inside the call back function itself? no, you when you call _block(), from that moment on the signal handler will not be called anymore for that signal, until

Re: call back problems

2005-11-07 Thread Dennis Morgan
On Tuesday 08 November 2005 05:31, Olivier Sessink wrote: > Dennis Morgan wrote: > > Hi, > > i am just wondering if there is a way to halt a call back till another one > > has finished using a function? > > there is a g_signal_handler_block() function which does this > > store the return value

Re: call back problems

2005-11-07 Thread Olivier Sessink
Dennis Morgan wrote: > Hi, > i am just wondering if there is a way to halt a call back till another one > has finished using a function? there is a g_signal_handler_block() function which does this store the return value of g_signal_connect() in your data structures, and use it to block or unbl