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
21e7b4b9
Commit
21e7b4b9
authored
Sep 11, 2014
by
Dimitri van Heesch
Browse files
Options
Browse Files
Download
Plain Diff
Merge pull request #163 from squan888/master
Bug 729236 - Added HIDE_COMPOUND_REFERENCE config option
parents
598bdf64
415ae702
Changes
2
Show 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 @
21e7b4b9
...
...
@@ -2052,11 +2052,18 @@ QCString ClassDef::title() const
pageTitle
=
theTranslator
->
trSingletonReference
(
displayName
());
}
else
{
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 @
21e7b4b9
...
...
@@ -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