summaryrefslogtreecommitdiffstats
path: root/src/dotgraph.cpp
diff options
context:
space:
mode:
authorMoritz 'Morty' Strübe <moritz.struebe@redheads.de>2020-03-19 21:39:12 (GMT)
committerMoritz 'Morty' Strübe <moritz.struebe@redheads.de>2020-03-21 10:31:58 (GMT)
commit9ab5f68756f1555a805dda5d0215d275d3db8725 (patch)
tree123ac0ea220b4c85d20c7388efc2cc0065191bc7 /src/dotgraph.cpp
parente0fa50b71c74a191a64a2361564a016e6f9c0204 (diff)
downloadDoxygen-9ab5f68756f1555a805dda5d0215d275d3db8725.zip
Doxygen-9ab5f68756f1555a805dda5d0215d275d3db8725.tar.gz
Doxygen-9ab5f68756f1555a805dda5d0215d275d3db8725.tar.bz2
Replace SDict with std::map
Diffstat (limited to 'src/dotgraph.cpp')
-rw-r--r--src/dotgraph.cpp8
1 files changed, 4 insertions, 4 deletions
diff --git a/src/dotgraph.cpp b/src/dotgraph.cpp
index cdf4f6c..e622dd4 100644
--- a/src/dotgraph.cpp
+++ b/src/dotgraph.cpp
@@ -233,11 +233,11 @@ void DotGraph::generateCode(FTextStream &t)
if (m_regenerate)
{
DotManager::instance()->
- createFilePatcher(absImgName())->
+ createFilePatcher(absImgName().data())->
addSVGConversion(m_relPath,FALSE,QCString(),m_zoomable,m_graphId);
}
int mapId = DotManager::instance()->
- createFilePatcher(m_fileName)->
+ createFilePatcher(m_fileName.data())->
addSVGObject(m_baseName,absImgName(),m_relPath);
t << "<!-- SVG " << mapId << " -->" << endl;
}
@@ -252,7 +252,7 @@ void DotGraph::generateCode(FTextStream &t)
if (m_regenerate || !insertMapFile(t, absMapName(), m_relPath, getMapLabel()))
{
int mapId = DotManager::instance()->
- createFilePatcher(m_fileName)->
+ createFilePatcher(m_fileName.data())->
addMap(absMapName(), m_relPath, m_urlOnly, QCString(), getMapLabel());
t << "<!-- MAP " << mapId << " -->" << endl;
}
@@ -263,7 +263,7 @@ void DotGraph::generateCode(FTextStream &t)
if (m_regenerate || !DotFilePatcher::writeVecGfxFigure(t,m_baseName,absBaseName()))
{
int figId = DotManager::instance()->
- createFilePatcher(m_fileName)->
+ createFilePatcher(m_fileName.data())->
addFigure(m_baseName,absBaseName(),FALSE /*TRUE*/);
t << endl << "% FIG " << figId << endl;
}