Skip to content
Projects
Groups
Snippets
Help
Loading...
Help
Submit feedback
Contribute to GitLab
Sign in
Toggle navigation
D
doxverilog
Project
Project
Details
Activity
Releases
Cycle Analytics
Repository
Repository
Files
Commits
Branches
Tags
Contributors
Graph
Compare
Charts
Members
Members
Collapse sidebar
Close sidebar
Activity
Graph
Charts
Commits
Open sidebar
Elphel
doxverilog
Commits
415ae702
Commit
415ae702
authored
Apr 30, 2014
by
Stephen Quan
Browse files
Options
Browse Files
Download
Email Patches
Plain Diff
Bug 729236 - Added HIDE_COMPOUND_REFERENCE config option
parent
b944c2af
Changes
2
Hide whitespace changes
Inline
Side-by-side
Showing
2 changed files
with
19 additions
and
3 deletions
+19
-3
classdef.cpp
src/classdef.cpp
+10
-3
config.xml
src/config.xml
+9
-0
No files found.
src/classdef.cpp
View file @
415ae702
...
...
@@ -2050,9 +2050,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
;
}
...
...
src/config.xml
View file @
415ae702
...
...
@@ -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>
...
...
Write
Preview
Markdown
is supported
0%
Try again
or
attach a new file
Attach a file
Cancel
You are about to add
0
people
to the discussion. Proceed with caution.
Finish editing this message first!
Cancel
Please
register
or
sign in
to comment