Subversion Repository Public Repository

litesoft

Diff Revisions 947 vs 948 for /trunk/GWT_Sandbox/FormEngine/src/com/temp/client/foundation/widget/dialog/ConfirmSaveDialog.java

Diff revisions: vs.
  @@ -1,12 +1,12 @@
1 1 package com.temp.client.foundation.widget.dialog;
2 2
3 - import com.temp.client.foundation.widget.OurPushButton;
3 + import com.temp.client.foundation.widget.*;
4 4
5 5 public class ConfirmSaveDialog<T> extends ConfirmationDialog<T> {
6 - public ConfirmSaveDialog(T obj, String title, Integer contentWidth, String... bodyTextBlocksAboveControlButtons) {
7 - super(obj, title, contentWidth, //
8 - new OurPushButton("save"), //
9 - new OurPushButton("dontSave"), //
10 - bodyTextBlocksAboveControlButtons);
6 + public ConfirmSaveDialog( T obj, String title, Integer contentWidth, String... bodyTextBlocksAboveControlButtons ) {
7 + super( obj, title, contentWidth, //
8 + new OurPushButton( "save" ), //
9 + new OurPushButton( "dontSave" ), //
10 + bodyTextBlocksAboveControlButtons );
11 11 }
12 12 }