diff options
Diffstat (limited to 'src/com/vaadin/ui/Label.java')
-rw-r--r-- | src/com/vaadin/ui/Label.java | 2 |
1 files changed, 1 insertions, 1 deletions
diff --git a/src/com/vaadin/ui/Label.java b/src/com/vaadin/ui/Label.java index 12e1f9590e..e1c64605d7 100644 --- a/src/com/vaadin/ui/Label.java +++ b/src/com/vaadin/ui/Label.java @@ -228,7 +228,7 @@ public class Label extends AbstractComponent implements Property<String>, newDataSource.getType())) { // Try to find a converter Converter<String, ?> c = ConverterUtil.getConverter(String.class, - newDataSource.getType()); + newDataSource.getType(), getApplication()); setConverter(c); } dataSource = newDataSource; |