diff --git a/core/org.eclipse.cdt.ui/ChangeLog b/core/org.eclipse.cdt.ui/ChangeLog index 2c1fdc0402d..ada7b39d8ba 100644 --- a/core/org.eclipse.cdt.ui/ChangeLog +++ b/core/org.eclipse.cdt.ui/ChangeLog @@ -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 diff --git a/core/org.eclipse.cdt.ui/src/org/eclipse/cdt/ui/dialogs/BinaryParserBlock.java b/core/org.eclipse.cdt.ui/src/org/eclipse/cdt/ui/dialogs/BinaryParserBlock.java index 6207902bd81..f828ba7c260 100644 --- a/core/org.eclipse.cdt.ui/src/org/eclipse/cdt/ui/dialogs/BinaryParserBlock.java +++ b/core/org.eclipse.cdt.ui/src/org/eclipse/cdt/ui/dialogs/BinaryParserBlock.java @@ -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; }