Name: skT88420 Date: 12/01/99
D:\>java -version
java version "1.3beta"
Java(TM) 2 Runtime Environment, Standard Edition (build 1.3beta-O)
Java(TM) HotSpot Client VM (build 1.3beta-O, mixed mode)
When creating an instance of a class derived from JDialog, which
is NOT RESIZABLE, the title bar icon of the dialog is not shown,
when the dialog is shown with setVisible(true).
public class X extends JDialog {
public X (JFrame owner, String title, boolean modal) {
super(owner, title, modal);
setResizable(false);
}
}
(Review ID: 98486)
======================================================================