aboutsummaryrefslogtreecommitdiffstats
path: root/src/com/vaadin/terminal
diff options
context:
space:
mode:
authorMatti Tahvonen <matti.tahvonen@itmill.com>2010-06-24 13:08:05 +0000
committerMatti Tahvonen <matti.tahvonen@itmill.com>2010-06-24 13:08:05 +0000
commitaefd2b082c114c8a43f7312c78f99882eeefd07e (patch)
treeb07840b1493f84d2e8030b09e8f39ba19554e960 /src/com/vaadin/terminal
parentf5e6b759d2d90cfd43e43f0619b5131f506e3fed (diff)
downloadvaadin-framework-aefd2b082c114c8a43f7312c78f99882eeefd07e.tar.gz
vaadin-framework-aefd2b082c114c8a43f7312c78f99882eeefd07e.zip
fixes #5033
svn changeset:13914/svn branch:6.4
Diffstat (limited to 'src/com/vaadin/terminal')
-rw-r--r--src/com/vaadin/terminal/gwt/client/ui/VUnknownComponent.java9
1 files changed, 7 insertions, 2 deletions
diff --git a/src/com/vaadin/terminal/gwt/client/ui/VUnknownComponent.java b/src/com/vaadin/terminal/gwt/client/ui/VUnknownComponent.java
index e778316c5d..062df4f6ae 100644
--- a/src/com/vaadin/terminal/gwt/client/ui/VUnknownComponent.java
+++ b/src/com/vaadin/terminal/gwt/client/ui/VUnknownComponent.java
@@ -34,7 +34,12 @@ public class VUnknownComponent extends Composite implements Paintable {
}
setCaption("Widgetset does not contain implementation for "
+ serverClassName
- + ". Check its @ClientWidget mapping, widgetsets GWT module descrioption file and re-compile your widgetset. Unrendered UIDL:");
+ + ". Check its @ClientWidget mapping, widgetsets "
+ + "GWT module description file and re-compile your"
+ + " widgetset. In case you have downloaded a vaadin"
+ + " add-on package, you might want to refer to "
+ + "<a href='http://vaadin.com/using-addons'>add-on "
+ + "instructions</a>. Unrendered UIDL:");
if (uidlTree != null) {
uidlTree.removeFromParent();
}
@@ -44,6 +49,6 @@ public class VUnknownComponent extends Composite implements Paintable {
}
public void setCaption(String c) {
- caption.setText(c);
+ caption.getElement().setInnerHTML(c);
}
}