Hi,
The inheritance hierarchy when using the VS2005 template is incorrect when using inner classes. I have the following hierarchy:
class A : object
class B : object (class B is an inner class of class A)
class C : B
When I view the class C-documentation the tree is being displayed as:
Object (hyperlink to msdn)
B (hyperlink to class B-documentation)
C (no hyperlink because this hyperlink is the current file)
When I view the class B-documentation the tree is being displayed as:
Object (hyperlink to msdn)
A.B (no hyperlink because this hyperlink is the current file)
C (hyperlink to class C-documentation)
The strange thing is that the hyperlink version is being displayed as "B", but the
non-hyperlink version is being displayed as "A.B" ??why??
Please fix this.
Kind regards,
Stephan Smetsers