Skip to content

Commit fd9f7d1

Browse files
committed
fix: support special characters in callgraph
Some languages put stuff like " in the symbol name which breaks the callgraph. This patch fixes that by using html escape strings. Fixes: #691
1 parent 37215fa commit fd9f7d1

File tree

1 file changed

+1
-1
lines changed

1 file changed

+1
-1
lines changed

src/callgraphgenerator.cpp

+1-1
Original file line numberDiff line numberDiff line change
@@ -28,7 +28,7 @@ QHash<Data::Symbol, QString> writeGraph(QTextStream& stream, const Data::Symbol&
2828
if (symbol.prettySymbol.isEmpty()) {
2929
stream << "??";
3030
} else {
31-
stream << symbol.prettySymbol;
31+
stream << symbol.prettySymbol.toHtmlEscaped();
3232
}
3333
stream << "\", color=\"" << settings->callgraphActiveColor().name() << "\"]\n";
3434

0 commit comments

Comments
 (0)