From 6ec58803b93457fe11b2d9355e92f3ff00032667 Mon Sep 17 00:00:00 2001 From: Anton Leherbauer Date: Tue, 12 Dec 2006 13:37:01 +0000 Subject: [PATCH] Disable showing inheritance information by default --- .../org/eclipse/cdt/internal/ui/viewsupport/CElementLabels.java | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) 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) {