mirror of
https://github.com/eclipse-cdt/cdt
synced 2025-04-23 14:42:11 +02:00
2005-03-16 Alain Magloire
Patch from Tracy Miranda to fix PR 88160 * src/org/eclipse/cdt/managedbuilder/ui/properties/NewConfigurationDialog.java
This commit is contained in:
parent
2f5d16e839
commit
ec263f76dc
2 changed files with 6 additions and 2 deletions
|
@ -1,3 +1,7 @@
|
|||
2005-03-16 Alain Magloire
|
||||
Patch from Tracy Miranda to fix PR 88160
|
||||
* src/org/eclipse/cdt/managedbuilder/ui/properties/NewConfigurationDialog.java
|
||||
|
||||
2004-07-21 Tanya Wolff
|
||||
Fix for 70217: C++ Build Properties view: Platform overlaps field
|
||||
* src/org/eclipse/cdt/managedbuilder/ui/properties/BuildPropertyPage.java
|
||||
|
|
|
@ -73,7 +73,7 @@ public class NewConfigurationDialog extends StatusDialog {
|
|||
/**
|
||||
* @param parentShell
|
||||
* @param managedTarget
|
||||
* @param nameList A list of names that have been added by the user but have not yet been added to the target
|
||||
* @param nameList A list of names (Strings) that have been added by the user but have not yet been added to the target
|
||||
* @param title The title of the dialog
|
||||
*/
|
||||
protected NewConfigurationDialog(Shell parentShell, IManagedProject managedProject, ArrayList nameList, String title) {
|
||||
|
@ -324,7 +324,7 @@ public class NewConfigurationDialog extends StatusDialog {
|
|||
}
|
||||
Iterator iter = reservedNames.listIterator();
|
||||
while (iter.hasNext()) {
|
||||
if (((IConfiguration)iter.next()).getName().equalsIgnoreCase(newName)) {
|
||||
if (((String)iter.next()).equalsIgnoreCase(newName)) {
|
||||
return true;
|
||||
}
|
||||
}
|
||||
|
|
Loading…
Add table
Reference in a new issue