Subversion Repository Public Repository

litesoft

Diff Revisions 713 vs 729 for /trunk/GWT_Sandbox/MultiModuleSingleSrc/main/src/org/litesoft/sandbox/multimodule/client/main/home/HomeViewImpl.java

Diff revisions: vs.
  @@ -3,6 +3,7 @@
3 3 import java.util.*;
4 4
5 5 import org.litesoft.GWT.client.util.*;
6 + import org.litesoft.GWT.client.util.externalization.*;
6 7 import org.litesoft.sandbox.multimodule.client.foundation.places.*;
7 8 import org.litesoft.sandbox.multimodule.client.foundation.support.*;
8 9
  @@ -18,7 +19,7 @@
18 19
19 20 public HomeViewImpl()
20 21 {
21 - Grid zPanel = new Grid( 4, 3 )
22 + Grid zPanel = new Grid( 6, 3 )
22 23 {
23 24 @Override
24 25 protected void onAttach()
  @@ -39,6 +40,9 @@
39 40
40 41 zPanel.setWidget( 3, 1, createButton( EnumPlaces.Back ) );
41 42
43 + zPanel.setWidget( 3, 1, new HTML( " " ) );
44 + zPanel.setWidget( 3, 1, new Label( ExternalizedText.getInstance().get( "Xyzzy", "WTF" ) ) );
45 +
42 46 mAsWidget = zPanel;
43 47 }
44 48