diff options
author | Dimitri van Heesch <dimitri@stack.nl> | 2015-02-26 19:26:15 (GMT) |
---|---|---|
committer | Dimitri van Heesch <dimitri@stack.nl> | 2015-02-26 19:26:15 (GMT) |
commit | 5e5615a9d2da8b923565c1bcadc9db48efbc75d0 (patch) | |
tree | 3e53070ae9b2bb683c6b27b5c4edf5cf9151d850 /src/memberdef.cpp | |
parent | 80d09775da9a99a3bc58704ffd055547c6b03043 (diff) | |
parent | 073e9482a516c24a3d045da049941bfd432f3354 (diff) | |
download | Doxygen-5e5615a9d2da8b923565c1bcadc9db48efbc75d0.zip Doxygen-5e5615a9d2da8b923565c1bcadc9db48efbc75d0.tar.gz Doxygen-5e5615a9d2da8b923565c1bcadc9db48efbc75d0.tar.bz2 |
Merge pull request #302 from albert-github/feature/bug_callgraph
Adding commands \hidecallgraph and \hidecallergraph
Diffstat (limited to 'src/memberdef.cpp')
-rw-r--r-- | src/memberdef.cpp | 4 |
1 files changed, 2 insertions, 2 deletions
diff --git a/src/memberdef.cpp b/src/memberdef.cpp index 4d7afef..c3ef245 100644 --- a/src/memberdef.cpp +++ b/src/memberdef.cpp @@ -2043,7 +2043,7 @@ void MemberDef::getLabels(QStrList &sl,Definition *container) const void MemberDef::_writeCallGraph(OutputList &ol) { // write call graph - if ((m_impl->hasCallGraph || Config_getBool("CALL_GRAPH")) + if (m_impl->hasCallGraph && (isFunction() || isSlot() || isSignal()) && Config_getBool("HAVE_DOT") ) { @@ -2068,7 +2068,7 @@ void MemberDef::_writeCallGraph(OutputList &ol) void MemberDef::_writeCallerGraph(OutputList &ol) { - if ((m_impl->hasCallerGraph || Config_getBool("CALLER_GRAPH")) + if (m_impl->hasCallerGraph && (isFunction() || isSlot() || isSignal()) && Config_getBool("HAVE_DOT") ) { |