From aefd2b082c114c8a43f7312c78f99882eeefd07e Mon Sep 17 00:00:00 2001 From: Matti Tahvonen Date: Thu, 24 Jun 2010 13:08:05 +0000 Subject: [PATCH] fixes #5033 svn changeset:13914/svn branch:6.4 --- .../vaadin/terminal/gwt/client/ui/VUnknownComponent.java | 9 +++++++-- 1 file 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 " + + "add-on " + + "instructions. 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); } } -- 2.39.5