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
ae962ae4
Commit
ae962ae4
authored
Jul 12, 2012
by
Dimitri van Heesch
Browse files
Options
Browse Files
Download
Email Patches
Plain Diff
Fix to prevent .doc, .dox, and .txt files to appear in the index
parent
48450ace
Changes
1
Hide whitespace changes
Inline
Side-by-side
Showing
1 changed file
with
6 additions
and
3 deletions
+6
-3
index.cpp
src/index.cpp
+6
-3
No files found.
src/index.cpp
View file @
ae962ae4
...
...
@@ -784,9 +784,12 @@ static void writeDirHierarchy(OutputList &ol, FTVHelp* ftv,bool addToIndex)
reference
=
fd
->
getReference
();
outputBase
=
fd
->
getOutputFileBase
();
}
ftv
->
addContentsItem
(
FALSE
,
fd
->
displayName
(),
reference
,
outputBase
,
0
,
FALSE
,
FALSE
,
fd
);
if
(
doc
||
src
)
{
ftv
->
addContentsItem
(
FALSE
,
fd
->
displayName
(),
reference
,
outputBase
,
0
,
FALSE
,
FALSE
,
fd
);
}
if
(
addToIndex
)
{
if
(
doc
)
...
...
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