Re: delete event for contained widget does not work

2005-10-02 Thread Deekshit Mantampady
Thank you very much. That worked. On 10/2/05, Daniel Pekelharing <[EMAIL PROTECTED]> wrote: > Hi, > > I notice that you're connecting the entry with "destroy_event", > I think you're wanting the "destroy" signal... > > Hope this helps > > - Daniel > > On Sun, 2005-10-02 at 11:39 +0530, Deekshit Ma

Re: delete event for contained widget does not work

2005-10-01 Thread Daniel Pekelharing
Oh and another thing: gtk_signal_connect(GTK_OBJECT(entry), "delete_event", GTK_SIGNAL_FUNC(window_deleted), NULL); gtk_signal_connect(GTK_OBJECT(entry), "destroy_event", GTK_SIGNAL_FUNC(window_deleted), NULL); You have connected both these signals to

Re: delete event for contained widget does not work

2005-10-01 Thread Daniel Pekelharing
Hi, I notice that you're connecting the entry with "destroy_event", I think you're wanting the "destroy" signal... Hope this helps - Daniel On Sun, 2005-10-02 at 11:39 +0530, Deekshit Mantampady wrote: > Hi all, >I have an entry in window with containment as >window > vbox > hbox >entr