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
ecaa2e3e
Commit
ecaa2e3e
authored
Aug 23, 2013
by
Dimitri van Heesch
Browse files
Options
Browse Files
Download
Email Patches
Plain Diff
Bug 693537 - Create possibility to keep user comments in Doxyfile
parent
ed4ed873
Changes
2
Show whitespace changes
Inline
Side-by-side
Showing
2 changed files
with
3 additions
and
2 deletions
+3
-2
config.h
src/config.h
+2
-1
config.l
src/config.l
+1
-1
No files found.
src/config.h
View file @
ecaa2e3e
...
@@ -22,6 +22,7 @@
...
@@ -22,6 +22,7 @@
#include <qstrlist.h>
#include <qstrlist.h>
#include <qdict.h>
#include <qdict.h>
#include <qlist.h>
#include <qlist.h>
#include <qregexp.h>
#include "ftextstream.h"
#include "ftextstream.h"
...
@@ -518,7 +519,7 @@ class Config
...
@@ -518,7 +519,7 @@ class Config
{
{
QCString
result
=
m_userComment
;
QCString
result
=
m_userComment
;
m_userComment
.
resize
(
0
);
m_userComment
.
resize
(
0
);
return
result
;
return
result
.
replace
(
QRegExp
(
"
\r
"
),
""
)
;
}
}
protected
:
protected
:
...
...
src/config.l
View file @
ecaa2e3e
...
@@ -856,7 +856,7 @@ void Config::writeTemplate(FTextStream &t,bool sl,bool upd)
...
@@ -856,7 +856,7 @@ void Config::writeTemplate(FTextStream &t,bool sl,bool upd)
if (m_userComment)
if (m_userComment)
{
{
t << "\n";
t << "\n";
t <<
m_userComment
;
t <<
takeUserComment()
;
}
}
}
}
...
...
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