diff options
author | Guenther R. Wenninger <acc.github@bitschubbser.org> | 2017-05-29 09:54:47 (GMT) |
---|---|---|
committer | Guenther R. Wenninger <acc.github@bitschubbser.org> | 2017-05-29 09:55:03 (GMT) |
commit | 77e0cf86eadbec22b81e26e083ffc831240869da (patch) | |
tree | e913e90f0dd8110b1c21955d233a54ffd20fcac1 | |
parent | 9b7b33994f6443c26146837ba13dff94e5eba998 (diff) | |
download | Doxygen-77e0cf86eadbec22b81e26e083ffc831240869da.zip Doxygen-77e0cf86eadbec22b81e26e083ffc831240869da.tar.gz Doxygen-77e0cf86eadbec22b81e26e083ffc831240869da.tar.bz2 |
Doxygen/VHDLdocgen:
Fix whitespace handling in vhdldocgen.cpp when generating
a flowchart.
-rw-r--r-- | src/vhdldocgen.cpp | 4 |
1 files changed, 2 insertions, 2 deletions
diff --git a/src/vhdldocgen.cpp b/src/vhdldocgen.cpp index d09de09..7883327 100644 --- a/src/vhdldocgen.cpp +++ b/src/vhdldocgen.cpp @@ -3995,10 +3995,10 @@ void FlowChart::createSVG() //if (m) // fprintf(stderr,"\n creating flowchart : %s %s in file %s \n",VhdlDocGen::trTypeString(m->getMemberSpecifiers()),m->name().data(),m->getFileDef()->name().data()); - QCString dir=" -o "+ov+qcs; + QCString dir=" -o \""+ov+qcs+"\""; ov+="/flow_design.dot"; - QCString vlargs="-Tsvg "+ov+dir ; + QCString vlargs="-Tsvg \""+ov+"\" "+dir ; if (portable_system("dot",vlargs)!=0) { |