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
7cd2b1f2
Commit
7cd2b1f2
authored
Sep 23, 2014
by
Dimitri van Heesch
Browse files
Options
Browse Files
Download
Email Patches
Plain Diff
Bug 735926 - [PATCH] RTF output: \\diafile and \\mscfile do not work
parent
8b391584
Changes
1
Hide whitespace changes
Inline
Side-by-side
Showing
1 changed file
with
6 additions
and
5 deletions
+6
-5
rtfdocvisitor.cpp
src/rtfdocvisitor.cpp
+6
-5
No files found.
src/rtfdocvisitor.cpp
View file @
7cd2b1f2
...
...
@@ -299,11 +299,12 @@ void RTFDocVisitor::visit(DocVerbatim *s)
static
int
mscindex
=
1
;
QCString
baseName
(
4096
);
baseName
.
sprintf
(
"%s%d
"
,
baseName
.
sprintf
(
"%s%d
%s"
,
(
Config_getString
(
"RTF_OUTPUT"
)
+
"/inline_mscgraph_"
).
data
(),
mscindex
++
mscindex
++
,
".msc"
);
QFile
file
(
baseName
+
".msc"
);
QFile
file
(
baseName
);
if
(
!
file
.
open
(
IO_WriteOnly
))
{
err
(
"Could not open file %s for writing
\n
"
,
baseName
.
data
());
...
...
@@ -1685,7 +1686,7 @@ void RTFDocVisitor::writeMscFile(const QCString &fileName)
baseName
=
baseName
.
right
(
baseName
.
length
()
-
i
-
1
);
}
QCString
outDir
=
Config_getString
(
"RTF_OUTPUT"
);
writeMscGraphFromFile
(
fileName
+
".msc"
,
outDir
,
baseName
,
MSC_BITMAP
);
writeMscGraphFromFile
(
fileName
,
outDir
,
baseName
,
MSC_BITMAP
);
if
(
!
m_lastIsPara
)
m_t
<<
"
\\
par"
<<
endl
;
m_t
<<
"{"
<<
endl
;
m_t
<<
rtf_Style_Reset
;
...
...
@@ -1705,7 +1706,7 @@ void RTFDocVisitor::writeDiaFile(const QCString &fileName)
baseName
=
baseName
.
right
(
baseName
.
length
()
-
i
-
1
);
}
QCString
outDir
=
Config_getString
(
"RTF_OUTPUT"
);
writeDiaGraphFromFile
(
fileName
+
".dia"
,
outDir
,
baseName
,
DIA_BITMAP
);
writeDiaGraphFromFile
(
fileName
,
outDir
,
baseName
,
DIA_BITMAP
);
if
(
!
m_lastIsPara
)
m_t
<<
"
\\
par"
<<
endl
;
m_t
<<
"{"
<<
endl
;
m_t
<<
rtf_Style_Reset
;
...
...
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