Subversion Repository Public Repository

litesoft

Diff Revisions 49 vs 60 for /trunk/Java/GWT/OldClient/src/org/litesoft/GWT/forms/client/components/factories/others/UiLabelWidgetFactory.java

Diff revisions: vs.
  @@ -1,7 +1,6 @@
1 1 // This Source Code is in the Public Domain per: http://litesoft.org/License.txt
2 2 package org.litesoft.GWT.forms.client.components.factories.others;
3 3
4 - import com.google.gwt.user.client.ui.*;
5 4 import org.litesoft.GWT.client.*;
6 5 import org.litesoft.GWT.client.widgets.nonpublic.*;
7 6 import org.litesoft.GWT.forms.client.components.factories.*;
  @@ -11,6 +10,8 @@
11 10 import org.litesoft.ui.def.nonpublic.*;
12 11 import org.litesoft.ui.def.nonpublic.support.*;
13 12
13 + import com.google.gwt.user.client.ui.*;
14 +
14 15 public class UiLabelWidgetFactory implements FormComponentFactory
15 16 {
16 17 public Widget create( FormInstanceComponentHandler pComponentHandler, UiDef pUiDef,
  @@ -32,7 +33,7 @@
32 33 {
33 34 return new Label( text );
34 35 }
35 - String html = UtilsGwt.HTMLize( text );
36 + String html = null; // todo: translate: UtilsGwt.HTMLize( text );
36 37 return new HTML( html );
37 38 }
38 39 }