git-svn-id: svn://svn.code.sf.net/p/chibios/svn/trunk@4549 35acf78f-673a-0410-8e92-d51de3d6d3f4

This commit is contained in:
gdisirio 2012-08-09 14:51:44 +00:00
parent 06057a5a81
commit d768fddeeb
2 changed files with 4 additions and 3 deletions

View File

@ -18,7 +18,6 @@ import org.eclipse.core.resources.IWorkspaceRoot;
import org.eclipse.core.resources.ResourcesPlugin; import org.eclipse.core.resources.ResourcesPlugin;
import org.eclipse.core.runtime.CoreException; import org.eclipse.core.runtime.CoreException;
import org.eclipse.core.runtime.IProgressMonitor; import org.eclipse.core.runtime.IProgressMonitor;
import org.eclipse.core.runtime.NullProgressMonitor;
import org.eclipse.core.runtime.Path; import org.eclipse.core.runtime.Path;
import org.eclipse.jface.dialogs.MessageDialog; import org.eclipse.jface.dialogs.MessageDialog;
import org.eclipse.jface.operation.IRunnableWithProgress; import org.eclipse.jface.operation.IRunnableWithProgress;
@ -122,7 +121,7 @@ public class NewApplicationProjectWizard extends Wizard implements INewWizard {
/* Step #2, makes it a CDT project.*/ /* Step #2, makes it a CDT project.*/
desc = workspace.newProjectDescription(projectName); desc = workspace.newProjectDescription(projectName);
project = CCorePlugin.getDefault().createCDTProject(desc, project, new NullProgressMonitor()); project = CCorePlugin.getDefault().createCDTProject(desc, project, null);
ICProjectDescriptionManager mngr = CoreModel.getDefault().getProjectDescriptionManager(); ICProjectDescriptionManager mngr = CoreModel.getDefault().getProjectDescriptionManager();
ICProjectDescription cdesc = mngr.createProjectDescription(project, false); ICProjectDescription cdesc = mngr.createProjectDescription(project, false);

View File

@ -162,7 +162,6 @@ public class NewApplicationProjectWizardPage extends WizardPage {
projectParentPathText.setEnabled(false); projectParentPathText.setEnabled(false);
btnBrowse.setEnabled(false); btnBrowse.setEnabled(false);
/* Retrieving the resource path of the processors.xml file. */ /* Retrieving the resource path of the processors.xml file. */
String fpath; String fpath;
try { try {
@ -201,6 +200,9 @@ public class NewApplicationProjectWizardPage extends WizardPage {
/* Update checks on the fields.*/ /* Update checks on the fields.*/
projectPageUpdated(); projectPageUpdated();
/* Focus on the first editable field.*/
projectNameText.setFocus();
} }
public String getProjectName() { public String getProjectName() {