diff options
author | Dimitri van Heesch <dimitri@stack.nl> | 2001-02-11 18:24:41 (GMT) |
---|---|---|
committer | Dimitri van Heesch <dimitri@stack.nl> | 2001-02-11 18:24:41 (GMT) |
commit | d27070014e0f36246e7eec3899c7d55503b1a05a (patch) | |
tree | f98b164f024c28a0d6378b68142ed268239dba97 /src/dot.cpp | |
parent | f376c26e3dbe33a773a2f424df4b9c62c8c880ef (diff) | |
download | Doxygen-d27070014e0f36246e7eec3899c7d55503b1a05a.zip Doxygen-d27070014e0f36246e7eec3899c7d55503b1a05a.tar.gz Doxygen-d27070014e0f36246e7eec3899c7d55503b1a05a.tar.bz2 |
Release-1.2.5-20010211
Diffstat (limited to 'src/dot.cpp')
-rw-r--r-- | src/dot.cpp | 6 |
1 files changed, 3 insertions, 3 deletions
diff --git a/src/dot.cpp b/src/dot.cpp index 5824794..7b3309c 100644 --- a/src/dot.cpp +++ b/src/dot.cpp @@ -602,7 +602,7 @@ void DotGfxHierarchyTable::writeGraph(QTextStream &out,const char *path) out << "<map name=\"" << n->m_label << "_map\">" << endl; convertMapFile(out,mapName); out << "</map>" << endl; - thisDir.remove(dotName); + if (Config::dotCleanUp) thisDir.remove(dotName); thisDir.remove(mapName); } out << "</table>" << endl; @@ -1187,7 +1187,7 @@ void DotClassGraph::writeGraph(QTextStream &out, "\\end{center}\n" "\\end{figure}\n"; } - thisDir.remove(baseName+".dot"); + if (Config::dotCleanUp) thisDir.remove(baseName+".dot"); QDir::setCurrent(oldDir); } @@ -1387,7 +1387,7 @@ void DotInclDepGraph::writeGraph(QTextStream &out, "\\end{figure}\n"; } - thisDir.remove(baseName+".dot"); + if (Config::dotCleanUp) thisDir.remove(baseName+".dot"); QDir::setCurrent(oldDir); } |