]> source.dussan.org Git - vaadin-framework.git/commitdiff
fixes #5033
authorMatti Tahvonen <matti.tahvonen@itmill.com>
Thu, 24 Jun 2010 13:08:05 +0000 (13:08 +0000)
committerMatti Tahvonen <matti.tahvonen@itmill.com>
Thu, 24 Jun 2010 13:08:05 +0000 (13:08 +0000)
svn changeset:13914/svn branch:6.4

src/com/vaadin/terminal/gwt/client/ui/VUnknownComponent.java

index e778316c5d8e1039cf114542d4e61f5d744ca757..062df4f6ae93eb3fbe0e24feb6393cec16b01491 100644 (file)
@@ -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);
     }
 }