Re: X widget question

2016-03-22 Thread Marco Atzeri
On 22/03/2016 11:18, Jon Turney wrote: On 20/03/2016 09:57, Marco Atzeri wrote: I have finally identified where ncview was segfaulting on X86_64 The solution was to reverse the order of destruction for a chain of widgets Nice to see that you have resolved this. It's not clear from what you w

Re: X widget question

2016-03-22 Thread Jon Turney
On 20/03/2016 09:57, Marco Atzeri wrote: I have finally identified where ncview was segfaulting on X86_64 The solution was to reverse the order of destruction for a chain of widgets Nice to see that you have resolved this. It's not clear from what you write if you are sure there is an undocu

X widget question

2016-03-20 Thread Marco Atzeri
I have finally identified where ncview was segfaulting on X86_64 The solution was to reverse the order of destruction for a chain of widgets i=0; - while( (w = *(diminfo_row_widget + i++)) != NULL ) - XtDestroyWidget( w ); + while( (w = *(diminfo_row_widget + i)