diff options
author | Dimitri van Heesch <dimitri@stack.nl> | 2012-05-21 17:21:26 (GMT) |
---|---|---|
committer | Dimitri van Heesch <dimitri@stack.nl> | 2012-05-21 17:21:26 (GMT) |
commit | 1983c30b71bf92b3fa6bfedbb98451c3b7f74498 (patch) | |
tree | 5d7deeb634e1d93742bd822732466c600ffbbf5f /src/dot.cpp | |
parent | d233732e774e36b870069a3c5679588a49ebb23f (diff) | |
download | Doxygen-1983c30b71bf92b3fa6bfedbb98451c3b7f74498.zip Doxygen-1983c30b71bf92b3fa6bfedbb98451c3b7f74498.tar.gz Doxygen-1983c30b71bf92b3fa6bfedbb98451c3b7f74498.tar.bz2 |
Fixed absolute path in SVG graph
Diffstat (limited to 'src/dot.cpp')
-rw-r--r-- | src/dot.cpp | 2 |
1 files changed, 1 insertions, 1 deletions
diff --git a/src/dot.cpp b/src/dot.cpp index a33ea5f..a4cef13 100644 --- a/src/dot.cpp +++ b/src/dot.cpp @@ -1082,7 +1082,7 @@ bool DotFilePatcher::run() if (isSVGFile && interactiveSVG && replacedHeader) { QCString orgName=m_patchFile.left(m_patchFile.length()-4)+"_org.svg"; - t << substitute(svgZoomFooter,"$orgname",orgName); + t << substitute(svgZoomFooter,"$orgname",stripPath(orgName)); fo.close(); // keep original SVG file so we can refer to it, we do need to replace // dummy link by real ones |