Subversion Repository Public Repository

litesoft

Diff Revisions 142 vs 144 for /trunk/Java/GWT/Client/src/org/litesoft/GWT/client/widgets/DefButtonTypedRed.java

Diff revisions: vs.
  @@ -4,10 +4,14 @@
4 4
5 5 public class DefButtonTypedRed extends DefButtonNamedTypedAbstractRegularSizedTextable
6 6 {
7 - public static final int CASE = 2;
7 + @Override
8 + public String getType()
9 + {
10 + return GWTButtonFactory.RED_BUTTON_TYPE;
11 + }
8 12
9 13 public DefButtonTypedRed( DefButtonNamed pNamed )
10 14 {
11 - super( pNamed, CASE, GWTButtonFactory.RED_BUTTON_TYPE );
15 + super( pNamed );
12 16 }
13 17 }