summaryrefslogtreecommitdiffstats
path: root/src/memberdef.cpp
diff options
context:
space:
mode:
authorDimitri van Heesch <dimitri@stack.nl>2015-02-26 19:26:15 (GMT)
committerDimitri van Heesch <dimitri@stack.nl>2015-02-26 19:26:15 (GMT)
commit5e5615a9d2da8b923565c1bcadc9db48efbc75d0 (patch)
tree3e53070ae9b2bb683c6b27b5c4edf5cf9151d850 /src/memberdef.cpp
parent80d09775da9a99a3bc58704ffd055547c6b03043 (diff)
parent073e9482a516c24a3d045da049941bfd432f3354 (diff)
downloadDoxygen-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.cpp4
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")
)
{