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
d26fc11e
Commit
d26fc11e
authored
Dec 17, 2014
by
Dimitri van Heesch
Browse files
Options
Browse Files
Download
Plain Diff
Merge branch 'master' of github.com:doxygen/doxygen
parents
050fce2b
a6f6364e
Changes
4
Expand all
Show whitespace changes
Inline
Side-by-side
Showing
4 changed files
with
143 additions
and
108 deletions
+143
-108
doxywizard.cpp
addon/doxywizard/doxywizard.cpp
+3
-3
qfeatures.h
qtools/qfeatures.h
+1
-1
docbookgen.cpp
src/docbookgen.cpp
+137
-104
docbookvisitor.cpp
src/docbookvisitor.cpp
+2
-0
No files found.
addon/doxywizard/doxywizard.cpp
View file @
d26fc11e
...
...
@@ -10,7 +10,7 @@
#define MAX_RECENT_FILES 10
const
int
messageTimeout
=
5000
;
//!< status bar message timeout in millisec.
const
int
messageTimeout
=
5000
;
//!< status bar message timeout in millisec
onds
.
MainWindow
&
MainWindow
::
instance
()
{
...
...
@@ -78,7 +78,7 @@ MainWindow::MainWindow()
runLayout
->
addWidget
(
showSettings
);
runLayout
->
addWidget
(
m_saveLog
);
// output produced by
d
oxygen
// output produced by
D
oxygen
runTabLayout
->
addLayout
(
runLayout
);
runTabLayout
->
addWidget
(
new
QLabel
(
tr
(
"Output produced by doxygen"
)));
QGridLayout
*
grid
=
new
QGridLayout
;
...
...
@@ -427,7 +427,7 @@ void MainWindow::runDoxygen()
qDebug
()
<<
tr
(
"Doxygen path: "
)
<<
doxygenPath
;
if
(
!
QFile
(
doxygenPath
+
QString
::
fromAscii
(
"doxygen"
)).
exists
()
)
{
// No
doygen binary in the resources, if there is a system d
oxygen binary, use that instead
// No
Doxygen binary in the resources, if there is a system D
oxygen binary, use that instead
if
(
QFile
(
QString
::
fromAscii
(
"/usr/local/bin/doxygen"
)).
exists
()
)
{
doxygenPath
=
QString
::
fromAscii
(
"/usr/local/bin/"
);
...
...
qtools/qfeatures.h
View file @
d26fc11e
...
...
@@ -637,7 +637,7 @@
# define QT_NO_VBUTTONGROUP
#endif
/*!
Horizonal box layout widgets
Horizon
t
al box layout widgets
*/
#ifdef QT_NO_FRAME
# define QT_NO_HBOX
...
...
src/docbookgen.cpp
View file @
d26fc11e
This diff is collapsed.
Click to expand it.
src/docbookvisitor.cpp
View file @
d26fc11e
...
...
@@ -1028,6 +1028,8 @@ void DocbookDocVisitor::visitPre(DocParamSect *s)
}
m_t
<<
" </title>"
<<
endl
;
m_t
<<
" <tgroup cols=
\"
2
\"
align=
\"
left
\"
colsep=
\"
1
\"
rowsep=
\"
1
\"
>"
<<
endl
;
m_t
<<
" <colspec colwidth=
\"
1*
\"
/>"
<<
endl
;
m_t
<<
" <colspec colwidth=
\"
4*
\"
/>"
<<
endl
;
m_t
<<
" <tbody>"
<<
endl
;
}
...
...
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