summaryrefslogtreecommitdiffstats
path: root/src/dot.cpp
diff options
context:
space:
mode:
authorDimitri van Heesch <doxygen@gmail.com>2019-06-02 10:34:48 (GMT)
committerDimitri van Heesch <doxygen@gmail.com>2019-06-02 10:34:48 (GMT)
commit7403c9e4f7f05e4660ed6d3a54f3f935958b01fd (patch)
tree8cc76edde22c0ed4b4498df78a37c70ba6fc05cf /src/dot.cpp
parenta8b46600830be24ac189f798a1915f0ad1b86beb (diff)
parent0a15da0120834a5cf7db20843b7d63f3c82f5f5d (diff)
downloadDoxygen-7403c9e4f7f05e4660ed6d3a54f3f935958b01fd.zip
Doxygen-7403c9e4f7f05e4660ed6d3a54f3f935958b01fd.tar.gz
Doxygen-7403c9e4f7f05e4660ed6d3a54f3f935958b01fd.tar.bz2
Merge branch 'master' of github.com:doxygen/doxygen
Diffstat (limited to 'src/dot.cpp')
-rw-r--r--src/dot.cpp6
1 files changed, 4 insertions, 2 deletions
diff --git a/src/dot.cpp b/src/dot.cpp
index 1570abc..5aca277 100644
--- a/src/dot.cpp
+++ b/src/dot.cpp
@@ -231,6 +231,8 @@ static EdgeProperties umlEdgeProps =
};
+static QCString convertLabel(const QCString &l);
+
static QCString getDotFontName()
{
static QCString dotFontName = Config_getString(DOT_FONTNAME);
@@ -259,7 +261,7 @@ static void writeGraphHeader(FTextStream &t,const QCString &title=QCString())
}
else
{
- t << "\"" << convertToXML(title) << "\"";
+ t << "\"" << convertLabel(title) << "\"";
}
t << endl << "{" << endl;
if (interactiveSVG) // insert a comment to force regeneration when this
@@ -4780,7 +4782,7 @@ void DotGroupCollaboration::writeGraphHeader(FTextStream &t,
}
else
{
- t << "\"" << convertToXML(title) << "\"";
+ t << "\"" << convertLabel(title) << "\"";
}
t << endl;
t << "{" << endl;