Skip to content

Commit

Permalink
Merge branch 'master' of github.com:doxygen/doxygen
Browse files Browse the repository at this point in the history
  • Loading branch information
doxygen committed Jul 7, 2022
2 parents f40a739 + 3454d71 commit f3ad6dc
Showing 1 changed file with 1 addition and 20 deletions.
21 changes: 1 addition & 20 deletions src/dotgroupcollaboration.cpp
Expand Up @@ -316,25 +316,6 @@ bool DotGroupCollaboration::isTrivial() const

void DotGroupCollaboration::writeGraphHeader(TextStream &t,const QCString &title) const
{
int fontSize = Config_getInt(DOT_FONTSIZE);
QCString fontName = Config_getString(DOT_FONTNAME);
t << "digraph ";
if (title.isEmpty())
{
t << "\"Dot Graph\"";
}
else
{
t << "\"" << convertToXML(title) << "\"";
}
t << "\n";
t << "{\n";
if (Config_getBool(DOT_TRANSPARENT))
{
t << " bgcolor=\"transparent\";\n";
}
t << " edge [fontname=\"" << fontName << "\",fontsize=\"" << fontSize << "\","
"labelfontname=\"" << fontName << "\",labelfontsize=\"" << fontSize << "\"];\n";
t << " node [fontname=\"" << fontName << "\",fontsize=\"" << fontSize << "\",shape=box];\n";
DotGraph::writeGraphHeader(t, title);
t << " rankdir=LR;\n";
}

0 comments on commit f3ad6dc

Please sign in to comment.