Hi all,

sbb jdk1.1.6v1 seems to have an awt bug when running KDE.

Frames have always the title text "AWTapp" visible.

Interestingly the same bug appeared in early 1.1.5
versions.

My system:
   Suse 5.1 (libc5)
   KDE Beta 4
   sbb JDK 1.1.6 v1-test source diffs + orig. Sun sources
   lesstif 0.84

I hope the problem lies not in compiling the jdk myself,
but everything else looks nice.

Cya,
   Clemens


P.S. Thanks again Steve for your great contribution.

--
/**
 * Test for jdk 1.1.5 (sbb) libc5 and KDE. Title of Frame is "AWTapp"
 * but it should be "Test". Does work with 1.1.5v5.
 * With sbb jdk 1.1.6v1-test it doesn't work again.
 */
public class FrameTitleTextTest {
   public static void main(String[] asArg_) {
      Frame pFrame = new Frame("Test");
      pFrame.addWindowListener(new WindowAdapter() {
         public void windowClosing(WindowEvent pWindowEvent_) {
            System.exit(0);
         }
      });
      pFrame.setBounds(400, 400);
      pFrame.setVisible(true);
   }
}

Reply via email to