Skip to main content
summaryrefslogtreecommitdiffstats
diff options
context:
space:
mode:
authorThomas Watson2017-10-13 15:16:56 +0000
committerThomas Watson2017-10-13 15:16:56 +0000
commit86583602bc6475defa8c68f52455ed3d43b803bb (patch)
tree026546f7381b4bae28ee80b7748793fe9c57f7bd
parent7d19a0b20de1ce741e67669671c4b05815dcac2e (diff)
downloadrt.equinox.p2-86583602bc6475defa8c68f52455ed3d43b803bb.tar.gz
rt.equinox.p2-86583602bc6475defa8c68f52455ed3d43b803bb.tar.xz
rt.equinox.p2-86583602bc6475defa8c68f52455ed3d43b803bb.zip
-rw-r--r--bundles/org.eclipse.equinox.p2.ui/src/org/eclipse/equinox/internal/p2/ui/dialogs/ProvisioningWizardDialog.java6
1 files changed, 2 insertions, 4 deletions
diff --git a/bundles/org.eclipse.equinox.p2.ui/src/org/eclipse/equinox/internal/p2/ui/dialogs/ProvisioningWizardDialog.java b/bundles/org.eclipse.equinox.p2.ui/src/org/eclipse/equinox/internal/p2/ui/dialogs/ProvisioningWizardDialog.java
index b70bc7b8b..03d144692 100644
--- a/bundles/org.eclipse.equinox.p2.ui/src/org/eclipse/equinox/internal/p2/ui/dialogs/ProvisioningWizardDialog.java
+++ b/bundles/org.eclipse.equinox.p2.ui/src/org/eclipse/equinox/internal/p2/ui/dialogs/ProvisioningWizardDialog.java
@@ -1,5 +1,5 @@
/*******************************************************************************
- * Copyright (c) 2009, 2016 IBM Corporation and others.
+ * Copyright (c) 2009, 2010 IBM Corporation and others.
* All rights reserved. This program and the accompanying materials
* are made available under the terms of the Eclipse Public License v1.0
* which accompanies this distribution, and is available at
@@ -7,7 +7,6 @@
*
* Contributors:
* IBM Corporation - initial API and implementation
- * Lars Vogel <Lars.Vogel@vogella.com> - Bug 506432
******************************************************************************/
package org.eclipse.equinox.internal.p2.ui.dialogs;
@@ -30,8 +29,7 @@ public class ProvisioningWizardDialog extends WizardDialog {
public ProvisioningWizardDialog(Shell parent, ProvisioningOperationWizard wizard) {
super(parent, wizard);
this.wizard = wizard;
- setShellStyle(SWT.CLOSE | SWT.MODELESS | SWT.BORDER | SWT.TITLE);
- setBlockOnOpen(false);
+ setShellStyle(getShellStyle() | SWT.RESIZE);
}
@Override

Back to the top