Subversion Repository Public Repository

litesoft

Diff Revisions 712 vs 803 for /trunk/Java/GWT/Client/src/org/litesoft/GWT/client/widgets/TextCellButton.java

Diff revisions: vs.
  @@ -2,6 +2,7 @@
2 2 package org.litesoft.GWT.client.widgets;
3 3
4 4 import org.litesoft.GWT.client.widgets.nonpublic.*;
5 + import org.litesoft.core.typeutils.*;
5 6 import org.litesoft.core.util.*;
6 7
7 8 import com.google.gwt.user.client.*;
  @@ -28,7 +29,7 @@
28 29 default:
29 30 break;
30 31 }
31 - return UtilsCommon.replace( pText, ' ', pWrapText ? "<BR>" : HTMLConstants.NBSP );
32 + return Strings.replace( pText, ' ', pWrapText ? "<BR>" : HTMLConstants.NBSP );
32 33 }
33 34
34 35 private static Element createElement( String pInnerHTML )