Bug in ClassView?
    Milo Hoffman 
    Milo at NG-Projekt.ORG
       
    Sun Feb  9 16:05:07 UTC 2003
    
    
  
Heho all,
the ClassView does not correctly show up struct's.
example:
  struct A     { int a; };
  struct B : A { int b; };
shows up as:
  +- A
     +- a
  +- A
     +- a
in the class tree.
using classes instead, shows it up correctly:
  class A     { int a; };
  class B : A { int b; };
will show up as:
  +- A
     +- a
  +- B
     +- b
Is this a bug, or is it desired that struct's aren't parsed (almost) the same 
as classes?
Sascha "Milo" Cunz
    
    
More information about the KDevelop-devel
mailing list