Skip to content

Commit 115f848

Browse files
committed
Issue #9921 HIDE_SCOP_NAMES and \ref
Remove scope in case of automatic generated text and `HIDE_SCOP_NAMES` is set
1 parent c692605 commit 115f848

1 file changed

Lines changed: 4 additions & 0 deletions

File tree

src/docnode.cpp

Lines changed: 4 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -767,6 +767,10 @@ DocRef::DocRef(DocParser *parser,DocNodeVariant *parent,const QCString &target,c
767767
bool localLink = parser->context.memberDef ? member->getClassDef()==parser->context.memberDef->getClassDef() : FALSE;
768768
m_text = member->objCMethodName(localLink,parser->context.inSeeBlock);
769769
}
770+
else if (Config_getBool(HIDE_SCOPE_NAMES))
771+
{
772+
m_text=stripScope(m_text);
773+
}
770774

771775
m_file = compound->getOutputFileBase();
772776
m_ref = compound->getReference();

0 commit comments

Comments
 (0)