summaryrefslogtreecommitdiffstats
path: root/src/filedef.cpp
diff options
context:
space:
mode:
authordimitri <dimitri@afe2bf4a-e733-0410-8a33-86f594647bc7>2003-04-12 09:32:03 (GMT)
committerdimitri <dimitri@afe2bf4a-e733-0410-8a33-86f594647bc7>2003-04-12 09:32:03 (GMT)
commit3cd2917eca7d09a30636b2b16efcd187bc3bf7c0 (patch)
tree97a61f449c3cd2b31dba7908cce7881ee2f0da85 /src/filedef.cpp
parent535ddc3bb7b6a6d4b50855a06838c11b84a9f3fd (diff)
downloadDoxygen-3cd2917eca7d09a30636b2b16efcd187bc3bf7c0.zip
Doxygen-3cd2917eca7d09a30636b2b16efcd187bc3bf7c0.tar.gz
Doxygen-3cd2917eca7d09a30636b2b16efcd187bc3bf7c0.tar.bz2
Release-1.3
Diffstat (limited to 'src/filedef.cpp')
-rw-r--r--src/filedef.cpp4
1 files changed, 2 insertions, 2 deletions
diff --git a/src/filedef.cpp b/src/filedef.cpp
index d3b606b..b0b2081 100644
--- a/src/filedef.cpp
+++ b/src/filedef.cpp
@@ -310,7 +310,7 @@ void FileDef::writeDocumentation(OutputList &ol)
if (Config_getBool("HAVE_DOT") && Config_getBool("INCLUDE_GRAPH"))
{
//printf("Graph for file %s\n",name().data());
- DotInclDepGraph incDepGraph(this,FALSE);
+ DotInclDepGraph incDepGraph(this,Config_getInt("MAX_DOT_GRAPH_DEPTH"),FALSE);
if (!incDepGraph.isTrivial())
{
ol.disable(OutputGenerator::Man);
@@ -326,7 +326,7 @@ void FileDef::writeDocumentation(OutputList &ol)
if (Config_getBool("HAVE_DOT") && Config_getBool("INCLUDED_BY_GRAPH"))
{
//printf("Graph for file %s\n",name().data());
- DotInclDepGraph incDepGraph(this,TRUE);
+ DotInclDepGraph incDepGraph(this,Config_getInt("MAX_DOT_GRAPH_DEPTH"),TRUE);
if (!incDepGraph.isTrivial())
{
ol.disable(OutputGenerator::Man);