summaryrefslogtreecommitdiffstats
path: root/src/dotlegendgraph.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/dotlegendgraph.cpp
parente0fa50b71c74a191a64a2361564a016e6f9c0204 (diff)
downloadDoxygen-9ab5f68756f1555a805dda5d0215d275d3db8725.zip
Doxygen-9ab5f68756f1555a805dda5d0215d275d3db8725.tar.gz
Doxygen-9ab5f68756f1555a805dda5d0215d275d3db8725.tar.bz2
Replace SDict with std::map
Diffstat (limited to 'src/dotlegendgraph.cpp')
-rw-r--r--src/dotlegendgraph.cpp2
1 files changed, 1 insertions, 1 deletions
diff --git a/src/dotlegendgraph.cpp b/src/dotlegendgraph.cpp
index 98e1f88..b17a293 100644
--- a/src/dotlegendgraph.cpp
+++ b/src/dotlegendgraph.cpp
@@ -29,7 +29,7 @@ void DotLegendGraph::writeGraph(const char *path)
if (getDotImageExtension()=="svg")
{
DotManager::instance()->
- createFilePatcher(absBaseName()+Config_getString(HTML_FILE_EXTENSION))->
+ createFilePatcher((absBaseName()+Config_getString(HTML_FILE_EXTENSION)).data())->
addSVGObject("graph_legend", absImgName(),QCString());
}
}