Skip to main content
aboutsummaryrefslogtreecommitdiffstats
blob: 1c614dd6602a158703d382336009726ab8b06c2d (plain) (blame)
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
package org.eclipse.team.internal.ccvs.ui;

/*
 * (c) Copyright IBM Corp. 2000, 2001.
 * All Rights Reserved.
 */

import org.eclipse.jface.wizard.IWizard;
import org.eclipse.jface.wizard.WizardDialog;
import org.eclipse.swt.SWT;
import org.eclipse.swt.widgets.Shell;

public class ResizableWizardDialog extends WizardDialog {
	/**
	 * Creates a new resizable wizard dialog.
	 */
	public ResizableWizardDialog(Shell parent, IWizard wizard) {
		super(parent, wizard);
		setShellStyle(getShellStyle() | SWT.RESIZE);
	}	
}

Back to the top