From 50c78a6f0d720617c5a82045b5b2cd18882a15a9 Mon Sep 17 00:00:00 2001 From: Dimitri van Heesch Date: Tue, 8 Mar 2016 20:19:30 +0100 Subject: [PATCH] Fixed wrong

nesting issue for call/caller graphs --- src/memberdef.cpp | 8 ++++---- 1 file changed, 4 insertions(+), 4 deletions(-) diff --git a/src/memberdef.cpp b/src/memberdef.cpp index 57697b0c05c..0f403d1e4a8 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(); } }