Skip to content

Commit

Permalink
Fixed wrong <p> nesting issue for call/caller graphs
Browse files Browse the repository at this point in the history
  • Loading branch information
Dimitri van Heesch committed Mar 8, 2016
1 parent 7584c29 commit 50c78a6
Showing 1 changed file with 4 additions and 4 deletions.
8 changes: 4 additions & 4 deletions src/memberdef.cpp
Expand Up @@ -2077,11 +2077,11 @@ void MemberDef::_writeCallGraph(OutputList &ol)
{
msg("Generating call graph for function %s\n",qPrint(qualifiedName()));
ol.disable(OutputGenerator::Man);
ol.startParagraph();
ol.startCallGraph();
ol.startParagraph();
ol.parseText(theTranslator->trCallGraph());
ol.endCallGraph(callGraph);
ol.endParagraph();
ol.endCallGraph(callGraph);
ol.enableAll();
}
}
Expand All @@ -2102,11 +2102,11 @@ void MemberDef::_writeCallerGraph(OutputList &ol)
{
msg("Generating caller graph for function %s\n",qPrint(qualifiedName()));
ol.disable(OutputGenerator::Man);
ol.startParagraph();
ol.startCallGraph();
ol.startParagraph();
ol.parseText(theTranslator->trCallerGraph());
ol.endCallGraph(callerGraph);
ol.endParagraph();
ol.endCallGraph(callerGraph);
ol.enableAll();
}
}
Expand Down

0 comments on commit 50c78a6

Please sign in to comment.