]> source.dussan.org Git - vaadin-framework.git/commitdiff
#8324 Fixed a reference to VUnkownComponent that should point to VUnkownComponentPain...
authorJens Jansson <peppe@vaadin.com>
Tue, 31 Jan 2012 10:40:25 +0000 (12:40 +0200)
committerArtur Signell <artur@vaadin.com>
Tue, 31 Jan 2012 13:08:26 +0000 (15:08 +0200)
src/com/vaadin/terminal/gwt/client/ApplicationConfiguration.java

index 862d156eb6d6af4dce4dbd61bf2a999bda490ba2..f9be8bf0193c37cf03c7132ee5dfc1fc9fa8bc16 100644 (file)
@@ -17,7 +17,6 @@ import com.google.gwt.core.client.Scheduler;
 import com.google.gwt.core.client.Scheduler.ScheduledCommand;
 import com.google.gwt.user.client.Command;
 import com.google.gwt.user.client.Timer;
-import com.vaadin.terminal.gwt.client.ui.VUnknownComponent;
 import com.vaadin.terminal.gwt.client.ui.VUnknownComponentPaintable;
 
 public class ApplicationConfiguration implements EntryPoint {
@@ -399,7 +398,7 @@ public class ApplicationConfiguration implements EntryPoint {
             String key = keyArray.get(i).intern();
             int value = valueMap.getInt(key);
             classes[value] = widgetSet.getImplementationByClassName(key);
-            if (classes[value] == VUnknownComponent.class) {
+            if (classes[value] == VUnknownComponentPaintable.class) {
                 if (unknownComponents == null) {
                     unknownComponents = new HashMap<String, String>();
                 }