diff options
author | Dimitri van Heesch <dimitri@stack.nl> | 2009-05-22 11:07:08 (GMT) |
---|---|---|
committer | Dimitri van Heesch <dimitri@stack.nl> | 2009-05-22 11:07:08 (GMT) |
commit | 8375a55083e5232e65493e73cb594c9c5e9552ab (patch) | |
tree | 9568dad93df55e8726251e5bdb1f2d8c00bdde93 /src/diagram.cpp | |
parent | bb12cae9e3318bfb11de719aa3e93db2bfaaccd6 (diff) | |
download | Doxygen-8375a55083e5232e65493e73cb594c9c5e9552ab.zip Doxygen-8375a55083e5232e65493e73cb594c9c5e9552ab.tar.gz Doxygen-8375a55083e5232e65493e73cb594c9c5e9552ab.tar.bz2 |
Release-1.5.9-20090522
Diffstat (limited to 'src/diagram.cpp')
-rw-r--r-- | src/diagram.cpp | 4 |
1 files changed, 2 insertions, 2 deletions
diff --git a/src/diagram.cpp b/src/diagram.cpp index bed02e1..75a0e00 100644 --- a/src/diagram.cpp +++ b/src/diagram.cpp @@ -175,9 +175,9 @@ static void writeMapArea(QTextStream &t,ClassDef *cd,QCString relPath, t << relPath; } t << cd->getOutputFileBase() << Doxygen::htmlFileExtension << "\" "; - t << "alt=\"" << cd->displayName(); + t << "alt=\"" << convertToXML(cd->displayName()); t << "\" shape=\"rect\" coords=\"" << x << "," << y << ","; - t << (x+w) << "," << (y+h) << "\">" << endl; + t << (x+w) << "," << (y+h) << "\"/>" << endl; } } //----------------------------------------------------------------------------- |