We read every piece of feedback, and take your input very seriously.
To see all available qualifiers, see our documentation.
1 parent 37215fa commit fd9f7d1Copy full SHA for fd9f7d1
src/callgraphgenerator.cpp
@@ -28,7 +28,7 @@ QHash<Data::Symbol, QString> writeGraph(QTextStream& stream, const Data::Symbol&
28
if (symbol.prettySymbol.isEmpty()) {
29
stream << "??";
30
} else {
31
- stream << symbol.prettySymbol;
+ stream << symbol.prettySymbol.toHtmlEscaped();
32
}
33
stream << "\", color=\"" << settings->callgraphActiveColor().name() << "\"]\n";
34
0 commit comments