summaryrefslogtreecommitdiffstats
diff options
context:
space:
mode:
authordimitri <dimitri@afe2bf4a-e733-0410-8a33-86f594647bc7>2012-05-21 17:21:26 (GMT)
committerdimitri <dimitri@afe2bf4a-e733-0410-8a33-86f594647bc7>2012-05-21 17:21:26 (GMT)
commitca357c82ca852382fd058698eab646409a015fc1 (patch)
tree5d7deeb634e1d93742bd822732466c600ffbbf5f
parentd61d1ef89f610b2fb747ea499adea0f25343be37 (diff)
downloadDoxygen-ca357c82ca852382fd058698eab646409a015fc1.zip
Doxygen-ca357c82ca852382fd058698eab646409a015fc1.tar.gz
Doxygen-ca357c82ca852382fd058698eab646409a015fc1.tar.bz2
Fixed absolute path in SVG graph
-rw-r--r--INSTALL2
-rw-r--r--README2
-rw-r--r--src/dot.cpp2
-rw-r--r--src/doxygen_css.h1
4 files changed, 4 insertions, 3 deletions
diff --git a/INSTALL b/INSTALL
index 77d0127..880bc4d 100644
--- a/INSTALL
+++ b/INSTALL
@@ -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)
diff --git a/README b/README
index 66b3b4c..5b48723 100644
--- a/README
+++ b/README
@@ -26,4 +26,4 @@ forum.
Enjoy,
-Dimitri van Heesch (dimitri@stack.nl) (20 May 2012)
+Dimitri van Heesch (dimitri@stack.nl) (21 May 2012)
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
diff --git a/src/doxygen_css.h b/src/doxygen_css.h
index 27540df..e883f8e 100644
--- a/src/doxygen_css.h
+++ b/src/doxygen_css.h
@@ -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"