Commit ca357c82 authored by dimitri's avatar dimitri

Fixed absolute path in SVG graph

parent d61d1ef8
......@@ -4,4 +4,4 @@ Please read the installation section of the manual
(http://www.doxygen.org/install.html) for instructions.
--------
Dimitri van Heesch (20 May 2012)
Dimitri van Heesch (21 May 2012)
......@@ -26,4 +26,4 @@ forum.
Enjoy,
Dimitri van Heesch (dimitri@stack.nl) (20 May 2012)
Dimitri van Heesch (dimitri@stack.nl) (21 May 2012)
......@@ -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
......
......@@ -172,6 +172,7 @@
"div.line {\n"
" font-family: monospace, fixed;\n"
" font-size: 13px;\n"
" min-height: 13px;\n"
" line-height: 1.0;\n"
" text-wrap: unrestricted;\n"
" white-space: -moz-pre-wrap; /* Moz */\n"
......
Markdown is supported
0% or
You are about to add 0 people to the discussion. Proceed with caution.
Finish editing this message first!
Please register or to comment