Subversion Repository Public Repository

litesoft

Diff Revisions 947 vs 948 for /trunk/Java/GWT/Client/src/org/litesoft/GWT/client/widgets/InfoButton.java

Diff revisions: vs.
  @@ -3,20 +3,16 @@
3 3
4 4 import com.google.gwt.event.dom.client.*;
5 5
6 - public class InfoButton extends BGImage16x16Button
7 - {
8 - public InfoButton()
9 - {
6 + public class InfoButton extends BGImage16x16Button {
7 + public InfoButton() {
10 8 this( "Info", null );
11 9 }
12 10
13 - public InfoButton( String pTooltip )
14 - {
11 + public InfoButton( String pTooltip ) {
15 12 this( pTooltip, null );
16 13 }
17 14
18 - public InfoButton( String pTooltip, ClickHandler pClickHandler )
19 - {
15 + public InfoButton( String pTooltip, ClickHandler pClickHandler ) {
20 16 super( "Info", pTooltip, "", pClickHandler );
21 17 }
22 18 }