|
From: Carlos <ma...@us...> - 2007-10-22 20:11:55
|
Update of /cvsroot/tail/TailS/src/java/net/sf/tails/swing In directory sc8-pr-cvs10.sourceforge.net:/tmp/cvs-serv20329/src/java/net/sf/tails/swing Modified Files: Main.java Log Message: Update denovo... TailS quase 100%... gogogo... Index: Main.java =================================================================== RCS file: /cvsroot/tail/TailS/src/java/net/sf/tails/swing/Main.java,v retrieving revision 1.11 retrieving revision 1.12 diff -C2 -d -r1.11 -r1.12 *** Main.java 17 Oct 2007 22:39:55 -0000 1.11 --- Main.java 22 Oct 2007 20:11:48 -0000 1.12 *************** *** 24,32 **** */ public static void main(String[] args) { ! try { ! UIManager.setLookAndFeel(UIManager.getSystemLookAndFeelClassName()); ! } catch (Exception e) { ! e.printStackTrace(); ! } new Index().setVisible(true); } --- 24,35 ---- */ public static void main(String[] args) { ! if (System.getProperty("os.name").toUpperCase().contains("WINDOWS")) ! { ! try { ! UIManager.setLookAndFeel(UIManager.getSystemLookAndFeelClassName()); ! } catch (Exception e) { ! e.printStackTrace(); ! } ! } new Index().setVisible(true); } |