summaryrefslogtreecommitdiffstats
path: root/src/dot.cpp
diff options
context:
space:
mode:
authordimitri <dimitri@afe2bf4a-e733-0410-8a33-86f594647bc7>2008-10-12 11:30:16 (GMT)
committerdimitri <dimitri@afe2bf4a-e733-0410-8a33-86f594647bc7>2008-10-12 11:30:16 (GMT)
commitcd8d9d90f0ded716840cd405d88c8b711428e899 (patch)
treedf8e13e4cac8b44414890fbf25c4bcd702d5ebd3 /src/dot.cpp
parent3102b81d682bf0b3b4dd50148434ab8e575a3d2e (diff)
downloadDoxygen-cd8d9d90f0ded716840cd405d88c8b711428e899.zip
Doxygen-cd8d9d90f0ded716840cd405d88c8b711428e899.tar.gz
Doxygen-cd8d9d90f0ded716840cd405d88c8b711428e899.tar.bz2
Release-1.5.7.1-20081012
Diffstat (limited to 'src/dot.cpp')
-rw-r--r--src/dot.cpp7
1 files changed, 7 insertions, 0 deletions
diff --git a/src/dot.cpp b/src/dot.cpp
index b8da01c..3f0a4ff 100644
--- a/src/dot.cpp
+++ b/src/dot.cpp
@@ -1123,6 +1123,7 @@ void DotGfxHierarchyTable::writeGraph(QTextStream &out,const char *path) const
checkDotResult(imgName);
if (Config_getBool("DOT_CLEANUP")) thisDir.remove(dotName);
}
+ Doxygen::indexList.addImageFile(imgName);
// write image and map in a table row
QCString mapLabel = convertNameToFile(n->m_label);
out << "<tr><td><img src=\"" << imgName << "\" border=\"0\" alt=\"\" usemap=\"#"
@@ -1908,6 +1909,7 @@ QCString DotClassGraph::writeGraph(QTextStream &out,
}
if (Config_getBool("DOT_CLEANUP")) thisDir.remove(baseName+".dot");
}
+ Doxygen::indexList.addImageFile(baseName+"."+imgExt);
if (format==BITMAP && generateImageMap) // produce HTML to include the image
{
@@ -2238,6 +2240,7 @@ QCString DotInclDepGraph::writeGraph(QTextStream &out,
}
}
}
+ Doxygen::indexList.addImageFile(baseName+"."+imgExt);
if (format==BITMAP && generateImageMap)
{
@@ -2531,6 +2534,7 @@ QCString DotCallGraph::writeGraph(QTextStream &out, GraphOutputFormat format,
}
}
}
+ Doxygen::indexList.addImageFile(baseName+"."+imgExt);
if (format==BITMAP && generateImageMap)
{
@@ -2672,6 +2676,7 @@ QCString DotDirDeps::writeGraph(QTextStream &out,
}
}
}
+ Doxygen::indexList.addImageFile(baseName+"."+imgExt);
if (format==BITMAP && generateImageMap)
{
@@ -2784,6 +2789,7 @@ void generateGraphLegend(const char *path)
return;
}
checkDotResult(imgName);
+ Doxygen::indexList.addImageFile(imgName);
QDir::setCurrent(oldDir);
}
@@ -2836,6 +2842,7 @@ void writeDotGraphFromFile(const char *inFile,const char *outDir,
}
if (format==BITMAP) checkDotResult(imgName);
+ Doxygen::indexList.addImageFile(imgName);
if (env==".")
{