Callback from which window???

2001-07-25 Thread Pedro Zorzenon Neto
Hi list, :-) I need a program with two identical windows, so I did: ... GtkWidget *winA; GtkWidget *winB; winA = create_winmon (); // <- creates my window with a button gtk_widget_show (winA); winB = create_winmon (); // <- creates another window just like the other gtk_widget_show

Re: Callback from which window???

2001-07-25 Thread Paul Davis
> GtkWidget *winA; > GtkWidget *winB; > winA = create_winmon (); // <- creates my window with a button > gtk_widget_show (winA); > winB = create_winmon (); // <- creates another window just like the other > gtk_widget_show (winB); > gtk_main(); > ... > > But there is a problem... both window