1
0
Fork 0
mirror of https://github.com/eclipse-cdt/cdt synced 2025-04-29 19:45:01 +02:00

Disable showing inheritance information by default

This commit is contained in:
Anton Leherbauer 2006-12-12 13:37:01 +00:00
parent b786f3c0e9
commit 6ec58803b9

View file

@ -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) {