Subversion Repository Public Repository

litesoft

Diff Revisions 947 vs 948 for /trunk/GWT_Sandbox/FormEngine/src/com/temp/client/foundation/widget/dialog/ConfirmDeleteDialog.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 ConfirmDeleteDialog<T> extends ConfirmationDialog<T> {
6 - public ConfirmDeleteDialog(T obj, String title, Integer contentWidth, String... bodyTextBlocksAboveControlButtons) {
7 - super(obj, title, contentWidth, //
8 - new OurPushButton("delete"), //
9 - new OurPushButton("dontDelete"), //
10 - bodyTextBlocksAboveControlButtons);
6 + public ConfirmDeleteDialog( T obj, String title, Integer contentWidth, String... bodyTextBlocksAboveControlButtons ) {
7 + super( obj, title, contentWidth, //
8 + new OurPushButton( "delete" ), //
9 + new OurPushButton( "dontDelete" ), //
10 + bodyTextBlocksAboveControlButtons );
11 11 }
12 12 }