1
0
Fork 0
mirror of https://github.com/eclipse-cdt/cdt synced 2025-04-29 19:45:01 +02:00

Fix for PR 64197 60906

* src/org/eclipse/cdt/ui/dialogs/BinaryParserBlock.java
This commit is contained in:
Alain Magloire 2004-06-04 02:27:14 +00:00
parent df3c06eb4b
commit 0041b93111
2 changed files with 10 additions and 3 deletions

View file

@ -1,3 +1,9 @@
2004-06-03 Alain Magloire
Fix for PR 64197 60906
* src/org/eclipse/cdt/ui/dialogs/BinaryParserBlock.java
2004-06-03 Alain Magloire
Again the problem:
Eclipse filename association with editors is done strictly via

View file

@ -385,9 +385,10 @@ public class BinaryParserBlock extends AbstractBinaryParserPage {
List list = binaryList.getSelectedElements();
if (list.size() > 0) {
BinaryParserConfiguration selected = (BinaryParserConfiguration) list.get(0);
if (binaryList.isChecked(selected)) {
return selected.getID();
}
//if (binaryList.isChecked(selected)) {
// return selected.getID();
//}
return selected.getID();
}
return null;
}