Subversion Repository Public Repository

litesoft

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

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