summaryrefslogtreecommitdiffstats
path: root/src/entry.cpp
diff options
context:
space:
mode:
authorDimitri van Heesch <dimitri@stack.nl>2015-02-26 19:40:22 (GMT)
committerDimitri van Heesch <dimitri@stack.nl>2015-02-26 19:40:22 (GMT)
commit8f74562b98af27288041a35b707a13a06a38ca23 (patch)
tree78519288c825a847582137fc667bcf5920c655f2 /src/entry.cpp
parente11b48785323017bf1d81e91e8133d7f3ba1f243 (diff)
parent5e5615a9d2da8b923565c1bcadc9db48efbc75d0 (diff)
downloadDoxygen-8f74562b98af27288041a35b707a13a06a38ca23.zip
Doxygen-8f74562b98af27288041a35b707a13a06a38ca23.tar.gz
Doxygen-8f74562b98af27288041a35b707a13a06a38ca23.tar.bz2
Merge branch 'master' of github.com:doxygen/doxygen
Diffstat (limited to 'src/entry.cpp')
-rw-r--r--src/entry.cpp8
1 files changed, 5 insertions, 3 deletions
diff --git a/src/entry.cpp b/src/entry.cpp
index 5039780..bf45f87 100644
--- a/src/entry.cpp
+++ b/src/entry.cpp
@@ -24,7 +24,7 @@
#include "doxygen.h"
#include "filestorage.h"
#include "arguments.h"
-
+#include "config.h"
//------------------------------------------------------------------
#define HEADER ('D'<<24)+('O'<<16)+('X'<<8)+'!'
@@ -216,6 +216,8 @@ void Entry::addSubEntry(Entry *current)
void Entry::reset()
{
+ static bool entryCallGraph = Config_getBool("CALL_GRAPH");
+ static bool entryCallerGraph = Config_getBool("CALLER_GRAPH");
//printf("Entry::reset()\n");
name.resize(0);
type.resize(0);
@@ -245,8 +247,8 @@ void Entry::reset()
bodyLine = -1;
endBodyLine = -1;
mGrpId = -1;
- callGraph = FALSE;
- callerGraph = FALSE;
+ callGraph = entryCallGraph;
+ callerGraph = entryCallerGraph;
section = EMPTY_SEC;
mtype = Method;
virt = Normal;