summaryrefslogtreecommitdiffstats
path: root/src/memberdef.cpp
diff options
context:
space:
mode:
authorDimitri van Heesch <dimitri@stack.nl>2016-03-08 19:19:30 (GMT)
committerDimitri van Heesch <dimitri@stack.nl>2016-03-08 19:19:30 (GMT)
commit50c78a6f0d720617c5a82045b5b2cd18882a15a9 (patch)
treeaa16ee441f7687bd3faf72d3133788cfbcedd2ff /src/memberdef.cpp
parent7584c292b8d65e016e8e19d7c1698ab6d0c1fdec (diff)
downloadDoxygen-50c78a6f0d720617c5a82045b5b2cd18882a15a9.zip
Doxygen-50c78a6f0d720617c5a82045b5b2cd18882a15a9.tar.gz
Doxygen-50c78a6f0d720617c5a82045b5b2cd18882a15a9.tar.bz2
Fixed wrong <p> nesting issue for call/caller graphs
Diffstat (limited to 'src/memberdef.cpp')
-rw-r--r--src/memberdef.cpp8
1 files changed, 4 insertions, 4 deletions
diff --git a/src/memberdef.cpp b/src/memberdef.cpp
index 57697b0..0f403d1 100644
--- a/src/memberdef.cpp
+++ b/src/memberdef.cpp
@@ -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();
}
}
@@ -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();
}
}