Hi Roman, On Wed, 2006-12-06 at 23:00 +0100, Roman Kennke wrote: > This fixes a method access in the Demo class and converts URLs to > strings. For some reason (a problem in java.net) it does not work with > the URL object.
The issue with URL objects is solved now.
2006-12-07 Mark Wielaard <[EMAIL PROTECTED]>
* examples/gnu/classpath/examples/swing/HtmlDemo.java
(setPage): Don't convert URL to String for setPage().
Committed,
Mark
diff -u -r1.10 HtmlDemo.java
--- examples/gnu/classpath/examples/swing/HtmlDemo.java 7 Dec 2006
14:50:40 -0000 1.10
+++ examples/gnu/classpath/examples/swing/HtmlDemo.java 8 Dec 2006
09:56:07 -0000
@@ -284,7 +284,7 @@
try
{
url.setText(u.toString());
- html.setPage(u.toString());
+ html.setPage(u);
history.addLast(u);
}
catch (IOException ex)
signature.asc
Description: This is a digitally signed message part
