diff --git a/core/org.eclipse.cdt.ui/ChangeLog b/core/org.eclipse.cdt.ui/ChangeLog index 5c34d15e315..1a454016a6c 100644 --- a/core/org.eclipse.cdt.ui/ChangeLog +++ b/core/org.eclipse.cdt.ui/ChangeLog @@ -1,3 +1,9 @@ +2002-11-01 + + * src/.../internal/ui/CElementLabelProvider.java + change cpu display string to use isLittleEndian method on IBinary + + 2002-10-31 Judy N. Green Removed the ReferenceBlock from the Project Properties display. Eclipse adds a Project Properties entry to the Project Properties. diff --git a/core/org.eclipse.cdt.ui/src/org/eclipse/cdt/internal/ui/CElementLabelProvider.java b/core/org.eclipse.cdt.ui/src/org/eclipse/cdt/internal/ui/CElementLabelProvider.java index fb38655f4a1..a8a3bb4544b 100644 --- a/core/org.eclipse.cdt.ui/src/org/eclipse/cdt/internal/ui/CElementLabelProvider.java +++ b/core/org.eclipse.cdt.ui/src/org/eclipse/cdt/internal/ui/CElementLabelProvider.java @@ -65,7 +65,8 @@ public class CElementLabelProvider extends LabelProvider { name += "();"; } if (celem instanceof IBinary) { - name += " - [" + ((IBinary)celem).getCPU() + "]"; + IBinary bin = (IBinary)celem; + name += " - [" + bin.getCPU() + (bin.isLittleEndian() ? "le" : "be") + "]"; } return name; }