1
0
Fork 0
mirror of https://github.com/eclipse-cdt/cdt synced 2025-04-23 06:32:10 +02:00

Fix for [Bug 179221] First config in the manifest file should become active on project creation

This commit is contained in:
Mikhail Sennikovsky 2007-05-24 13:04:07 +00:00
parent 83d47c3329
commit 998ec67e56

View file

@ -433,10 +433,10 @@ public class MBSWizardHandler extends CWizardHandler {
if (cfgFirst == null) // select at least first configuration if (cfgFirst == null) // select at least first configuration
cfgFirst = cfgDes; cfgFirst = cfgDes;
} }
if (cfgDebug == null) // if (cfgDebug == null)
cfgDebug = cfgFirst; // cfgDebug = cfgFirst;
if (cfgDebug != null) // if (cfgDebug != null)
cfgDebug.setActive(); // cfgDebug.setActive();
mngr.setProjectDescription(project, des); mngr.setProjectDescription(project, des);
doPostProcess(project); doPostProcess(project);