diff options
author | dimitri <dimitri@afe2bf4a-e733-0410-8a33-86f594647bc7> | 2005-08-15 19:02:58 (GMT) |
---|---|---|
committer | dimitri <dimitri@afe2bf4a-e733-0410-8a33-86f594647bc7> | 2005-08-15 19:02:58 (GMT) |
commit | fd40750db2416da9d7120cb912badea8595915f8 (patch) | |
tree | 209e1fa840a125b8182bc8f556e764ddba916f47 /src/classdef.cpp | |
parent | 0559d5795f6e2adc993577a4dd55b5370d31677c (diff) | |
download | Doxygen-fd40750db2416da9d7120cb912badea8595915f8.zip Doxygen-fd40750db2416da9d7120cb912badea8595915f8.tar.gz Doxygen-fd40750db2416da9d7120cb912badea8595915f8.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 */ |