Commit 21e7b4b9 authored by Dimitri van Heesch's avatar Dimitri van Heesch

Merge pull request #163 from squan888/master

Bug 729236 - Added HIDE_COMPOUND_REFERENCE config option
parents 598bdf64 415ae702
......@@ -2053,9 +2053,16 @@ QCString ClassDef::title() const
}
else
{
pageTitle = theTranslator->trCompoundReference(displayName(),
m_impl->compType == Interface && getLanguage()==SrcLangExt_ObjC ? Class : m_impl->compType,
m_impl->tempArgs != 0);
if (Config_getBool("HIDE_COMPOUND_REFERENCE"))
{
pageTitle = displayName();
}
else
{
pageTitle = theTranslator->trCompoundReference(displayName(),
m_impl->compType == Interface && getLanguage()==SrcLangExt_ObjC ? Class : m_impl->compType,
m_impl->tempArgs != 0);
}
}
return pageTitle;
}
......
......@@ -883,6 +883,15 @@ Go to the <a href="commands.html">next</a> section or return to the
If the \c HIDE_SCOPE_NAMES tag is set to \c NO then doxygen
will show members with their full class and namespace scopes in the
documentation. If set to \c YES, the scope will be hidden.
]]>
</docs>
</option>
<option type='bool' id='HIDE_COMPOUND_REFERENCE' defval='0'>
<docs>
<![CDATA[
If the \c HIDE_COMPOUND_REFERENCE tag is set to \c NO (default) then
doxygen will append additional text to a page's title, such as Class Reference.
If set to \c YES the compound reference will be hidden.
]]>
</docs>
</option>
......
Markdown is supported
0% or
You are about to add 0 people to the discussion. Proceed with caution.
Finish editing this message first!
Please register or to comment