summaryrefslogtreecommitdiff
diff options
context:
space:
mode:
authorMark Wielaard <mark@klomp.org>2006-12-08 09:59:12 +0000
committerMark Wielaard <mark@klomp.org>2006-12-08 09:59:12 +0000
commit499506fed94c7c95e1ddf04e0889b7bd032e3254 (patch)
treef44b308703295baa980a4567bdbd6f9cf965b12e
parentd8570cb25f0eb7cb6cda87651085834428e8f45f (diff)
downloadclasspath-499506fed94c7c95e1ddf04e0889b7bd032e3254.tar.gz
* examples/gnu/classpath/examples/swing/HtmlDemo.java
(setPage): Don't convert URL to String for setPage().
-rw-r--r--ChangeLog5
-rw-r--r--examples/gnu/classpath/examples/swing/HtmlDemo.java2
2 files changed, 6 insertions, 1 deletions
diff --git a/ChangeLog b/ChangeLog
index 01649d6d6..80eb99b2a 100644
--- a/ChangeLog
+++ b/ChangeLog
@@ -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)