diff options
author | Dimitri van Heesch <dimitri@stack.nl> | 2005-08-15 19:02:58 (GMT) |
---|---|---|
committer | Dimitri van Heesch <dimitri@stack.nl> | 2005-08-15 19:02:58 (GMT) |
commit | 6f70105f4d6c2b0dc6f583ec0ee60a7024259be1 (patch) | |
tree | 209e1fa840a125b8182bc8f556e764ddba916f47 /src/classdef.cpp | |
parent | 87a9eb9821aea993a1e0aeb12cbf585bb123688e (diff) | |
download | Doxygen-6f70105f4d6c2b0dc6f583ec0ee60a7024259be1.zip Doxygen-6f70105f4d6c2b0dc6f583ec0ee60a7024259be1.tar.gz Doxygen-6f70105f4d6c2b0dc6f583ec0ee60a7024259be1.tar.bz2 |
Release-1.4.4-20050815
Diffstat (limited to 'src/classdef.cpp')
-rw-r--r-- | src/classdef.cpp | 6 |
1 files changed, 3 insertions, 3 deletions
diff --git a/src/classdef.cpp b/src/classdef.cpp index 8bc3f38..7c27ebf 100644 --- a/src/classdef.cpp +++ b/src/classdef.cpp @@ -1024,7 +1024,7 @@ void ClassDef::writeDocumentation(OutputList &ol) m_compType == Interface && m_isObjC ? Class : m_compType, m_tempArgs != 0); - startFile(ol,getOutputFileBase(),name(),pageTitle); + startFile(ol,getOutputFileBase(),name(),pageTitle,HLI_ClassVisible); if (getOuterScope()!=Doxygen::globalScope) { writeNavigationPath(ol); @@ -1645,7 +1645,7 @@ void ClassDef::writeMemberList(OutputList &ol) ol.disableAllBut(OutputGenerator::Html); startFile(ol,m_memListFileName,m_memListFileName, - theTranslator->trMemberList()); + theTranslator->trMemberList(),HLI_ClassVisible); startTitle(ol,0); ol.parseText(displayName()+" "+theTranslator->trMemberList()); endTitle(ol,0,0); @@ -2025,7 +2025,7 @@ bool ClassDef::isLinkableInProject() const else { return !name().isEmpty() && /* no name */ - !m_artificial && + !m_artificial && !isHidden() && name().find('@')==-1 && /* anonymous compound */ (m_prot!=Private || Config_getBool("EXTRACT_PRIVATE")) && /* private */ (!m_isLocal || Config_getBool("EXTRACT_LOCAL_CLASSES")) && /* local */ |