Subversion Repository Public Repository

litesoft

Diff Revisions 273 vs 801 for /trunk/Java/GWT/Client/src/org/litesoft/GWT/client/widgets/nonpublic/AbstractSizeableHelper.java

Diff revisions: vs.
  @@ -3,7 +3,7 @@
3 3
4 4 import java.util.*;
5 5
6 - import org.litesoft.GWT.client.*;
6 + import org.litesoft.core.typeutils.*;
7 7
8 8 import com.google.gwt.core.client.*;
9 9 import com.google.gwt.user.client.*;
  @@ -321,7 +321,7 @@
321 321 private Element createFieldSet( boolean pHidden, String pLegend )
322 322 {
323 323 Element zFieldSet = setOverflowClass( DOM.createFieldSet(), mHidden = pHidden );
324 - if ( null != (pLegend = UtilsGwt.noEmpty( pLegend )) )
324 + if ( null != (pLegend = Strings.noEmpty( pLegend )) )
325 325 {
326 326 mFieldSetLegend = DOM.createLegend();
327 327 DOM.appendChild( zFieldSet, mFieldSetLegend );