From 0024d8214204faf2a1a3f67ff3271fb42586b63c Mon Sep 17 00:00:00 2001 From: David Inglis Date: Thu, 19 May 2005 01:50:59 +0000 Subject: [PATCH] fixed bug # 95556 --- .../src/org/eclipse/cdt/ui/wizards/NewCProjectWizard.java | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/core/org.eclipse.cdt.ui/src/org/eclipse/cdt/ui/wizards/NewCProjectWizard.java b/core/org.eclipse.cdt.ui/src/org/eclipse/cdt/ui/wizards/NewCProjectWizard.java index 8ae9ad1c5b5..dddd9d29871 100644 --- a/core/org.eclipse.cdt.ui/src/org/eclipse/cdt/ui/wizards/NewCProjectWizard.java +++ b/core/org.eclipse.cdt.ui/src/org/eclipse/cdt/ui/wizards/NewCProjectWizard.java @@ -243,7 +243,7 @@ public abstract class NewCProjectWizard extends BasicNewResourceWizard implement protected boolean invokeRunnable(IRunnableWithProgress runnable) { IRunnableWithProgress op= new WorkspaceModifyDelegatingOperation(runnable); try { - getContainer().run(false, true, op); + getContainer().run(true, true, op); } catch (InvocationTargetException e) { Shell shell= getShell(); String title= CUIPlugin.getResourceString(OP_ERROR + ".title"); //$NON-NLS-1$