Subversion Repository Public Repository

litesoft

Diff Revisions 669 vs 696 for /trunk/GWT_Sandbox/MultiModuleSingleSrc/main/src/org/litesoft/sandbox/multimodule/client/module/groupback/top/TopViewImpl.java

Diff revisions: vs.
  @@ -22,17 +22,13 @@
22 22
23 23 public TopViewImpl()
24 24 {
25 - String zSection = "BackGroup";
26 25 VerticalPanel zPanel = new VerticalPanel();
27 26 zPanel.setHorizontalAlignment( HasHorizontalAlignment.ALIGN_CENTER );
28 - zPanel.add( UtilsGwt.horizontal( new Label( "" + mCenter ), new Spacer().width( 10 ), new HelpWidget( zSection, "" + mCenter ) ) );
27 + zPanel.add( new Label( "" + mCenter ) );
29 28 zPanel.add( mDieRotator );
30 - zPanel.add( UtilsGwt.horizontal( new Spacer().width( 50 ), //
31 - new Button( "Home", createHomeClickHandler() ), //
32 - new Spacer().width( 220 ), //
33 - new HelpWidget( zSection, "Lucky" ), //
34 - new Spacer().width( 10 ), //
35 - new Button( "Feeling Lucky", createFeelingLuckyClickHandler() ) ) );
29 + zPanel.add( UtilsGwt.horizontal( new Button( "Home", createHomeClickHandler() ), //
30 + new Spacer().width( 20 ), //
31 + new Button( "Gamble", createFeelingLuckyClickHandler() ) ) );
36 32 mAsWidget = zPanel;
37 33 }
38 34