mirror of
https://github.com/eclipse-cdt/cdt
synced 2025-06-07 17:56:01 +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
|
2004-07-21 Tanya Wolff
|
||||||
Fix for 70217: C++ Build Properties view: Platform overlaps field
|
Fix for 70217: C++ Build Properties view: Platform overlaps field
|
||||||
* src/org/eclipse/cdt/managedbuilder/ui/properties/BuildPropertyPage.java
|
* src/org/eclipse/cdt/managedbuilder/ui/properties/BuildPropertyPage.java
|
||||||
|
|
|
@ -73,7 +73,7 @@ public class NewConfigurationDialog extends StatusDialog {
|
||||||
/**
|
/**
|
||||||
* @param parentShell
|
* @param parentShell
|
||||||
* @param managedTarget
|
* @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
|
* @param title The title of the dialog
|
||||||
*/
|
*/
|
||||||
protected NewConfigurationDialog(Shell parentShell, IManagedProject managedProject, ArrayList nameList, String title) {
|
protected NewConfigurationDialog(Shell parentShell, IManagedProject managedProject, ArrayList nameList, String title) {
|
||||||
|
@ -324,7 +324,7 @@ public class NewConfigurationDialog extends StatusDialog {
|
||||||
}
|
}
|
||||||
Iterator iter = reservedNames.listIterator();
|
Iterator iter = reservedNames.listIterator();
|
||||||
while (iter.hasNext()) {
|
while (iter.hasNext()) {
|
||||||
if (((IConfiguration)iter.next()).getName().equalsIgnoreCase(newName)) {
|
if (((String)iter.next()).equalsIgnoreCase(newName)) {
|
||||||
return true;
|
return true;
|
||||||
}
|
}
|
||||||
}
|
}
|
||||||
|
|
Loading…
Add table
Reference in a new issue