diff options
Diffstat (limited to 'src/classdef.cpp')
-rw-r--r-- | src/classdef.cpp | 8 |
1 files changed, 8 insertions, 0 deletions
diff --git a/src/classdef.cpp b/src/classdef.cpp index 9fa0cd5..2a22456 100644 --- a/src/classdef.cpp +++ b/src/classdef.cpp @@ -947,6 +947,10 @@ void ClassDef::writeDocumentation(OutputList &ol) m_tempArgs != 0); startFile(ol,getOutputFileBase(),name(),pageTitle); + if (getOuterScope()!=Doxygen::globalScope) + { + writeNavigationPath(ol); + } startTitle(ol,getOutputFileBase()); ol.parseText(pageTitle); addGroupListToTitle(ol,this); @@ -1343,6 +1347,10 @@ void ClassDef::writeDocumentation(OutputList &ol) theTranslator->trRelatedFunctions(), theTranslator->trRelatedSubscript() ); + + // nested classes + m_innerClasses->writeDeclaration(ol,0,0,TRUE); + ol.endMemberSections(); // write detailed description |