diff --git a/core/org.eclipse.cdt.ui/src/org/eclipse/cdt/internal/ui/viewsupport/CElementLabels.java b/core/org.eclipse.cdt.ui/src/org/eclipse/cdt/internal/ui/viewsupport/CElementLabels.java index a74a2f11671..ffe8565585f 100644 --- a/core/org.eclipse.cdt.ui/src/org/eclipse/cdt/internal/ui/viewsupport/CElementLabels.java +++ b/core/org.eclipse.cdt.ui/src/org/eclipse/cdt/internal/ui/viewsupport/CElementLabels.java @@ -691,7 +691,7 @@ public class CElementLabels { } buf.append(typeName); - if (/*getFlag(flags, T_INHERITANCE) && */elem instanceof IInheritance) { + if (getFlag(flags, T_INHERITANCE) && elem instanceof IInheritance) { IInheritance inheritance= (IInheritance)elem; String[] superclassNames= inheritance.getSuperClassesNames(); if (superclassNames != null && superclassNames.length > 0) {