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:
parent
df3c06eb4b
commit
0041b93111
2 changed files with 10 additions and 3 deletions
|
@ -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
|
2004-06-03 Alain Magloire
|
||||||
Again the problem:
|
Again the problem:
|
||||||
Eclipse filename association with editors is done strictly via
|
Eclipse filename association with editors is done strictly via
|
||||||
|
|
|
@ -385,9 +385,10 @@ public class BinaryParserBlock extends AbstractBinaryParserPage {
|
||||||
List list = binaryList.getSelectedElements();
|
List list = binaryList.getSelectedElements();
|
||||||
if (list.size() > 0) {
|
if (list.size() > 0) {
|
||||||
BinaryParserConfiguration selected = (BinaryParserConfiguration) list.get(0);
|
BinaryParserConfiguration selected = (BinaryParserConfiguration) list.get(0);
|
||||||
if (binaryList.isChecked(selected)) {
|
//if (binaryList.isChecked(selected)) {
|
||||||
return selected.getID();
|
// return selected.getID();
|
||||||
}
|
//}
|
||||||
|
return selected.getID();
|
||||||
}
|
}
|
||||||
return null;
|
return null;
|
||||||
}
|
}
|
||||||
|
|
Loading…
Add table
Reference in a new issue