diff options
author | Dimitri van Heesch <dimitri@stack.nl> | 2015-02-26 19:40:22 (GMT) |
---|---|---|
committer | Dimitri van Heesch <dimitri@stack.nl> | 2015-02-26 19:40:22 (GMT) |
commit | 8f74562b98af27288041a35b707a13a06a38ca23 (patch) | |
tree | 78519288c825a847582137fc667bcf5920c655f2 /src/util.cpp | |
parent | e11b48785323017bf1d81e91e8133d7f3ba1f243 (diff) | |
parent | 5e5615a9d2da8b923565c1bcadc9db48efbc75d0 (diff) | |
download | Doxygen-8f74562b98af27288041a35b707a13a06a38ca23.zip Doxygen-8f74562b98af27288041a35b707a13a06a38ca23.tar.gz Doxygen-8f74562b98af27288041a35b707a13a06a38ca23.tar.bz2 |
Merge branch 'master' of github.com:doxygen/doxygen
Diffstat (limited to 'src/util.cpp')
-rw-r--r-- | src/util.cpp | 6 |
1 files changed, 2 insertions, 4 deletions
diff --git a/src/util.cpp b/src/util.cpp index ac3805b..ffa03e1 100644 --- a/src/util.cpp +++ b/src/util.cpp @@ -8007,12 +8007,10 @@ void addDocCrossReference(MemberDef *src,MemberDef *dst) { static bool referencedByRelation = Config_getBool("REFERENCED_BY_RELATION"); static bool referencesRelation = Config_getBool("REFERENCES_RELATION"); - static bool callerGraph = Config_getBool("CALLER_GRAPH"); - static bool callGraph = Config_getBool("CALL_GRAPH"); //printf("--> addDocCrossReference src=%s,dst=%s\n",src->name().data(),dst->name().data()); if (dst->isTypedef() || dst->isEnumerate()) return; // don't add types - if ((referencedByRelation || callerGraph || dst->hasCallerGraph()) && + if ((referencedByRelation || dst->hasCallerGraph()) && src->showInCallGraph() ) { @@ -8028,7 +8026,7 @@ void addDocCrossReference(MemberDef *src,MemberDef *dst) mdDecl->addSourceReferencedBy(src); } } - if ((referencesRelation || callGraph || src->hasCallGraph()) && + if ((referencesRelation || src->hasCallGraph()) && src->showInCallGraph() ) { |