Subversion Repository Public Repository

litesoft

Diff Revisions 2 vs 23 for /trunk/Java/GWT/Client/src/org/litesoft/GWT/client/AlertErrorDialog.java

Diff revisions: vs.
  @@ -29,6 +29,7 @@
29 29 initialize( pTitle, pMessage, pCloseCallBack );
30 30 }
31 31
32 + @Override
32 33 protected SizeableHorizontalPanel createMainBodyPanel( final String pMessage )
33 34 {
34 35 SizeableHorizontalPanel zPanel = super.createMainBodyPanel( pMessage );
  @@ -37,6 +38,7 @@
37 38 {
38 39 zPanel.add( new Button( "Details", new ClickListener()
39 40 {
41 + @Override
40 42 public void onClick( Widget sender )
41 43 {
42 44 UtilsGwt.windowOpenWithHtml( "", "location=0,menubar=1,status=0,scrollbars=1", "<html><body style='font-family:sans-serif; overflow:auto;'><h4>" + pMessage + "</h4>" + wrapWithPre( mDetail ) + "</body></html>");
  @@ -47,6 +49,7 @@
47 49 return zPanel;
48 50 }
49 51
52 + @Override
50 53 protected void augmentMainPanelBeforeButtons( HasWidgets pVerticalPanel )
51 54 {
52 55 if ( mVersion != null )