* java/awt/Window.java
(show): Call super.show() instead of setVisible() to avoid endless
loop.
(hide): Call super.hide() instead of setVisible() to avoid endless
loop.
From-SVN: r66208
+2003-04-29 Michael Koch <konqueror@gmx.de>
+
+ * java/awt/Window.java
+ (show): Call super.show() instead of setVisible() to avoid endless
+ loop.
+ (hide): Call super.hide() instead of setVisible() to avoid endless
+ loop.
+
2003-04-29 Michael Koch <konqueror@gmx.de>
* java/util/zip/Deflater.java,
addNotify();
validate();
- setVisible (true);
+ super.show();
toFront();
}
public void hide()
{
// FIXME: call hide() on any "owned" children here.
- setVisible (false);
+ super.hide();
}
public boolean isDisplayable()