Subversion Repository Public Repository

litesoft

Diff Revisions 720 vs 802 for /trunk/Java/GWT/Client/src/org/litesoft/GWT/client/widgets/OurLabel.java

Diff revisions: vs.
  @@ -1,6 +1,7 @@
1 1 // This Source Code is in the Public Domain per: http://litesoft.org/License.txt
2 2 package org.litesoft.GWT.client.widgets;
3 3
4 + import org.litesoft.core.typeutils.*;
4 5 import org.litesoft.core.util.*;
5 6
6 7 import com.google.gwt.user.client.*;
  @@ -37,7 +38,7 @@
37 38
38 39 public void setText( String pLabelText, boolean pAsHTML )
39 40 {
40 - pLabelText = UtilsCommon.deNull( pLabelText );
41 + pLabelText = Strings.deNull( pLabelText );
41 42 if ( pLabelText.length() == 0 )
42 43 {
43 44 pLabelText = HTMLConstants.NBSP;