mirror of
https://github.com/eclipse-cdt/cdt
synced 2025-06-07 17:56:01 +02:00
Warnings elimination
This commit is contained in:
parent
1f72b78fad
commit
0dc9464e9a
1 changed files with 3 additions and 4 deletions
|
@ -48,8 +48,8 @@ import org.eclipse.ui.IWorkbenchPage;
|
||||||
import org.eclipse.ui.IWorkbenchWindow;
|
import org.eclipse.ui.IWorkbenchWindow;
|
||||||
import org.eclipse.ui.PartInitException;
|
import org.eclipse.ui.PartInitException;
|
||||||
import org.eclipse.ui.actions.WorkspaceModifyDelegatingOperation;
|
import org.eclipse.ui.actions.WorkspaceModifyDelegatingOperation;
|
||||||
|
import org.eclipse.ui.dialogs.PreferencesUtil;
|
||||||
import org.eclipse.ui.ide.IDE;
|
import org.eclipse.ui.ide.IDE;
|
||||||
import org.eclipse.ui.internal.dialogs.PropertyDialog;
|
|
||||||
import org.eclipse.ui.wizards.newresource.BasicNewProjectResourceWizard;
|
import org.eclipse.ui.wizards.newresource.BasicNewProjectResourceWizard;
|
||||||
import org.eclipse.ui.wizards.newresource.BasicNewResourceWizard;
|
import org.eclipse.ui.wizards.newresource.BasicNewResourceWizard;
|
||||||
|
|
||||||
|
@ -198,9 +198,8 @@ public abstract class NewModelProjectWizard extends BasicNewResourceWizard imple
|
||||||
}
|
}
|
||||||
}
|
}
|
||||||
// run properties dialog if required
|
// run properties dialog if required
|
||||||
if (fMainPage.h_selected.showProperties()) {
|
if (fMainPage.h_selected.showProperties())
|
||||||
PropertyDialog.createDialogOn(getShell(), propertyId, newProject).open();
|
PreferencesUtil.createPropertyDialogOn(getShell(), newProject, propertyId, null, null).open();
|
||||||
}
|
|
||||||
return true;
|
return true;
|
||||||
}
|
}
|
||||||
|
|
||||||
|
|
Loading…
Add table
Reference in a new issue