diff options
-rw-r--r-- | ChangeLog | 5 | ||||
-rw-r--r-- | examples/gnu/classpath/examples/swing/HtmlDemo.java | 2 |
2 files changed, 6 insertions, 1 deletions
@@ -1,5 +1,10 @@ 2006-12-07 Mark Wielaard <mark@klomp.org> + * examples/gnu/classpath/examples/swing/HtmlDemo.java + (setPage): Don't convert URL to String for setPage(). + +2006-12-07 Mark Wielaard <mark@klomp.org> + * tools/Makefile.am (clean-local): Remove iasm and asm.lst. 2006-12-07 Mark Wielaard <mark@klomp.org> diff --git a/examples/gnu/classpath/examples/swing/HtmlDemo.java b/examples/gnu/classpath/examples/swing/HtmlDemo.java index 35a9df290..1a24ae276 100644 --- a/examples/gnu/classpath/examples/swing/HtmlDemo.java +++ b/examples/gnu/classpath/examples/swing/HtmlDemo.java @@ -284,7 +284,7 @@ public class HtmlDemo extends JPanel try { url.setText(u.toString()); - html.setPage(u.toString()); + html.setPage(u); history.addLast(u); } catch (IOException ex) |