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:
parent
b786f3c0e9
commit
6ec58803b9
1 changed files with 1 additions and 1 deletions
|
@ -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) {
|
||||
|
|
Loading…
Add table
Reference in a new issue