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
ef81c70e
Commit
ef81c70e
authored
Jul 12, 2012
by
dimitri
Browse files
Options
Browse Files
Download
Email Patches
Plain Diff
Fixed bug that leads to empty file index in the HTML output.
parent
a9862d84
Changes
1
Hide whitespace changes
Inline
Side-by-side
Showing
1 changed file
with
17 additions
and
5 deletions
+17
-5
index.cpp
src/index.cpp
+17
-5
No files found.
src/index.cpp
View file @
ef81c70e
...
...
@@ -778,15 +778,27 @@ static void writeDirHierarchy(OutputList &ol, FTVHelp* ftv,bool addToIndex)
{
bool
doc
,
src
;
doc
=
fileVisibleInIndex
(
fd
,
src
);
QCString
reference
,
outputBase
;
if
(
doc
)
{
addMembersToIndex
(
fd
,
LayoutDocManager
::
File
,
fd
->
displayName
(),
QCString
(),
TRUE
);
reference
=
fd
->
getReference
();
outputBase
=
fd
->
getOutputFileBase
();
}
else
if
(
src
)
ftv
->
addContentsItem
(
FALSE
,
fd
->
displayName
(),
reference
,
outputBase
,
0
,
FALSE
,
FALSE
,
fd
);
if
(
addToIndex
)
{
Doxygen
::
indexList
.
addContentsItem
(
FALSE
,
convertToHtml
(
fd
->
name
(),
TRUE
),
0
,
fd
->
getSourceFileBase
(),
0
,
FALSE
,
TRUE
,
fd
);
if
(
doc
)
{
addMembersToIndex
(
fd
,
LayoutDocManager
::
File
,
fd
->
displayName
(),
QCString
(),
TRUE
);
}
else
if
(
src
)
{
Doxygen
::
indexList
.
addContentsItem
(
FALSE
,
convertToHtml
(
fd
->
name
(),
TRUE
),
0
,
fd
->
getSourceFileBase
(),
0
,
FALSE
,
TRUE
,
fd
);
}
}
}
}
...
...
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