* gnu/java/awt/peer/gtk/TestAWT.java (DialogWindow): Make text not
visible so that dialog can be reused.
From-SVN: r76160
+2004-01-19 Fernando Nasser <fnasser@redhat.com>
+
+ * gnu/java/awt/peer/gtk/TestAWT.java (DialogWindow): Make text not
+ visible so that dialog can be reused.
+
2004-01-19 Fernando Nasser <fnasser@redhat.com>
* java/awt/EventQueue.java (getCurrentEvent): Consider that system
public void windowClosing (WindowEvent e)
{
System.out.println ("Window Closing");
+ text.setVisible (false);
hide ();
}
});
cb.addActionListener(new ActionListener () {
public void actionPerformed (ActionEvent e)
{
- dispose();
+ text.setVisible (false);
+ hide();
}
});