File tree Expand file tree Collapse file tree 2 files changed +4
-3
lines changed Expand file tree Collapse file tree 2 files changed +4
-3
lines changed Original file line number Diff line number Diff line change @@ -1351,7 +1351,7 @@ QCString DefinitionImpl::navigationPathAsString() const
1351
1351
result+=(toFileDef (m_impl->def ))->getDirDef ()->navigationPathAsString ();
1352
1352
}
1353
1353
result+=" <li class=\" navelem\" >" ;
1354
- if (m_impl->def ->isLinkable ())
1354
+ if (m_impl->def ->isLinkableInProject ())
1355
1355
{
1356
1356
if (m_impl->def ->definitionType ()==Definition::TypeGroup &&
1357
1357
!toGroupDef (m_impl->def )->groupTitle ().isEmpty ())
Original file line number Diff line number Diff line change @@ -1713,8 +1713,9 @@ static void buildNamespaceList(const Entry *root)
1713
1713
{
1714
1714
nd->setLanguage (root->lang );
1715
1715
}
1716
- if (root->tagInfo ()==0 && nd->isLinkableInProject ()) // if we found the namespace in a tag file
1717
- // and also in a project file, then remove
1716
+ if (root->tagInfo ()==0 && nd->isReference () && !(root->doc .isEmpty () && root->brief .isEmpty ()))
1717
+ // if we previously found namespace nd in a tag file and now we find a
1718
+ // documented namespace with the same name in the project, then remove
1718
1719
// the tag file reference
1719
1720
{
1720
1721
nd->setReference (" " );
You can’t perform that action at this time.
0 commit comments