It seems my last patch for JRootPane was wrong. I revert it, though it
causes http://gcc.gnu.org/bugzilla/show_bug.cgi?id=27481 to be reopened.
2006-05-10 Roman Kennke <[EMAIL PROTECTED]>
* javax/swing/JRootPane.java
(createContentPane): Don't set background to null.
/Roman
Index: javax/swing/JRootPane.java
===================================================================
RCS file: /cvsroot/classpath/classpath/javax/swing/JRootPane.java,v
retrieving revision 1.39
diff -u -r1.39 JRootPane.java
--- javax/swing/JRootPane.java 8 May 2006 14:21:27 -0000 1.39
+++ javax/swing/JRootPane.java 10 May 2006 21:01:11 -0000
@@ -551,7 +551,6 @@
JPanel p = new JPanel();
p.setName(this.getName() + ".contentPane");
p.setLayout(new BorderLayout());
- p.setBackground(null);
return p;
}