1 11 package org.eclipse.team.internal.ccvs.ui; 12 13 14 import org.eclipse.jface.wizard.IWizard; 15 import org.eclipse.jface.wizard.WizardDialog; 16 import org.eclipse.swt.SWT; 17 import org.eclipse.swt.widgets.Shell; 18 19 public class ResizableWizardDialog extends WizardDialog { 20 23 public ResizableWizardDialog(Shell parent, IWizard wizard) { 24 super(parent, wizard); 25 setShellStyle(getShellStyle() | SWT.RESIZE); 26 } 27 } 28 | Popular Tags |