summaryrefslogtreecommitdiffstats
path: root/src/dotgraph.cpp
diff options
context:
space:
mode:
authorDimitri van Heesch <doxygen@gmail.com>2020-04-19 12:21:18 (GMT)
committerDimitri van Heesch <doxygen@gmail.com>2020-04-19 12:21:18 (GMT)
commitcd581388f3d013c501e3cefbaf3e81cf93d46fcb (patch)
treebc466f578c4390b054464d777d2bfeaeea65f1fc /src/dotgraph.cpp
parent28fc7d1fce3cc8e7fa26e3760e8d8d79b9dd23a5 (diff)
downloadDoxygen-cd581388f3d013c501e3cefbaf3e81cf93d46fcb.zip
Doxygen-cd581388f3d013c501e3cefbaf3e81cf93d46fcb.tar.gz
Doxygen-cd581388f3d013c501e3cefbaf3e81cf93d46fcb.tar.bz2
issue #7706: Md5 hash does not match for two different runs (part 2)
Diffstat (limited to 'src/dotgraph.cpp')
-rw-r--r--src/dotgraph.cpp12
1 files changed, 1 insertions, 11 deletions
diff --git a/src/dotgraph.cpp b/src/dotgraph.cpp
index e622dd4..c0cc4fd 100644
--- a/src/dotgraph.cpp
+++ b/src/dotgraph.cpp
@@ -74,15 +74,6 @@ static bool checkDeliverables(const QCString &file1,
return file1Ok && file2Ok;
}
-static void removeDotGraph(const QCString &dotName)
-{
- if (Config_getBool(DOT_CLEANUP))
- {
- QDir d;
- d.remove(dotName);
- }
-}
-
static bool insertMapFile(FTextStream &out,const QCString &mapFile,
const QCString &relPath,const QCString &mapLabel)
{
@@ -108,7 +99,7 @@ static bool insertMapFile(FTextStream &out,const QCString &mapFile,
QCString DotGraph::imgName() const
{
return m_baseName + ((m_graphFormat == GOF_BITMAP) ?
- ("." + getDotImageExtension()) : (Config_getBool(USE_PDFLATEX) ? ".pdf" : ".eps"));
+ ("." + getDotImageExtension()) : (Config_getBool(USE_PDFLATEX) ? ".pdf" : ".eps"));
}
QCString DotGraph::writeGraph(
@@ -166,7 +157,6 @@ bool DotGraph::prepareDotFile()
)
{
// all needed files are there
- removeDotGraph(absDotName());
return FALSE;
}