Subversion Repository Public Repository

litesoft

Diff Revisions 212 vs 802 for /trunk/Java/GWT/Client/src/org/litesoft/GWT/forms/client/FormEngine.java

Diff revisions: vs.
  @@ -8,6 +8,7 @@
8 8 import org.litesoft.GWT.forms.client.components.*;
9 9 import org.litesoft.GWT.forms.client.components.nonpublic.*;
10 10 import org.litesoft.core.simpletypes.*;
11 + import org.litesoft.core.typeutils.*;
11 12 import org.litesoft.core.util.*;
12 13 import org.litesoft.uispecification.*;
13 14
  @@ -277,8 +278,8 @@
277 278 */
278 279 public Widget createSectionTitle( String pPrefix, String pSuffix )
279 280 {
280 - mSectionTitlePrefix = UtilsCommon.deNull( pPrefix );
281 - mSectionTitleSuffix = UtilsCommon.deNull( pSuffix );
281 + mSectionTitlePrefix = Strings.deNull( pPrefix );
282 + mSectionTitleSuffix = Strings.deNull( pSuffix );
282 283 mSectionTitleLabel = new OurLabel( getSectionTitleText(), false );
283 284 mSectionTitlePanel = new LeftCenterRightHorizontalPanel().style( "SectionTitle" );
284 285 mSectionTitlePanel.addCenter( mSectionTitleLabel );