28 Sep
2004
28 Sep
'04
08:14
Hi, 'have a little problem! If I start following programm ('javac test.java'; 'java test') it kills my xserver (tested under kde and gnome): import javax.swing.*; public class test { private static void createAndShowGUI() { JFrame.setDefaultLookAndFeelDecorated(true); JFrame frame = new JFrame("HelloWorldSwing"); frame.setVisible(true); } public static void main(String[] args) { javax.swing.SwingUtilities.invokeLater(new Runnable() { public void run() { createAndShowGUI(); } }); } } use suse 9.1pro with newest xfree packages Is it a problem of xfree or java? Thanks