Index: gnu/java/net/protocol/http/Connection.java =================================================================== RCS file: /cvsroot/classpath/classpath/gnu/java/net/protocol/http/Connection.java,v retrieving revision 1.13 diff -u -r1.13 Connection.java --- gnu/java/net/protocol/http/Connection.java 12 Jan 2004 11:52:28 -0000 1.13 +++ gnu/java/net/protocol/http/Connection.java 12 Jan 2004 21:59:56 -0000 @@ -225,7 +225,7 @@ setRequestProperty ("Content-type", "application/x-www-form-urlencoded"); // Set correct content length. - if (bufferedOutoutStream != null) + if (bufferedOutputStream != null) setRequestProperty ("Content-length", String.valueOf (bufferedOutputStream.size())); // Write all req_props name-value pairs to the output writer. Index: java/awt/Container.java =================================================================== RCS file: /cvsroot/classpath/classpath/java/awt/Container.java,v retrieving revision 1.24 diff -u -r1.24 Container.java --- java/awt/Container.java 2 Dec 2003 20:22:09 -0000 1.24 +++ java/awt/Container.java 12 Jan 2004 21:59:59 -0000 @@ -678,7 +678,11 @@ */ public void update(Graphics g) { - g.clearRect(0, 0, width, height); + Rectangle clip = g.getClipBounds(); + if (clip == null) + g.clearRect(0, 0, width, height); + else + g.clearRect(clip.x, clip.y, clip.width, clip.height); super.update(g); } @@ -1197,7 +1201,7 @@ { synchronized (getTreeLock ()) { - for (int i = 0; i < ncomponents; ++i) + for (int i = ncomponents - 1; i >= 0; --i) { Component comp = component[i]; boolean applicable = comp.isVisible()