diff options
author | Dimitri van Heesch <dimitri@stack.nl> | 2003-04-12 09:32:03 (GMT) |
---|---|---|
committer | Dimitri van Heesch <dimitri@stack.nl> | 2003-04-12 09:32:03 (GMT) |
commit | 7e0aeda8a19448b44750f2530864432c964b0374 (patch) | |
tree | 97a61f449c3cd2b31dba7908cce7881ee2f0da85 /src/filedef.cpp | |
parent | b69146af8dce22431fc50dc3fcea6c7fd5fb1063 (diff) | |
download | Doxygen-7e0aeda8a19448b44750f2530864432c964b0374.zip Doxygen-7e0aeda8a19448b44750f2530864432c964b0374.tar.gz Doxygen-7e0aeda8a19448b44750f2530864432c964b0374.tar.bz2 |
Release-1.3
Diffstat (limited to 'src/filedef.cpp')
-rw-r--r-- | src/filedef.cpp | 4 |
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); |