summaryrefslogtreecommitdiffstats
path: root/src/xmlgen.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/xmlgen.cpp
parent535ddc3bb7b6a6d4b50855a06838c11b84a9f3fd (diff)
downloadDoxygen-3cd2917eca7d09a30636b2b16efcd187bc3bf7c0.zip
Doxygen-3cd2917eca7d09a30636b2b16efcd187bc3bf7c0.tar.gz
Doxygen-3cd2917eca7d09a30636b2b16efcd187bc3bf7c0.tar.bz2
Release-1.3
Diffstat (limited to 'src/xmlgen.cpp')
-rw-r--r--src/xmlgen.cpp8
1 files changed, 4 insertions, 4 deletions
diff --git a/src/xmlgen.cpp b/src/xmlgen.cpp
index 86cd12f..1062bd2 100644
--- a/src/xmlgen.cpp
+++ b/src/xmlgen.cpp
@@ -979,7 +979,7 @@ static void generateXMLForClass(ClassDef *cd,QTextStream &ti)
writeXMLDocBlock(t,cd->docFile(),cd->docLine(),cd->name(),0,cd->documentation());
t << " </detaileddescription>" << endl;
DotClassGraph inheritanceGraph(cd,DotClassGraph::Inheritance,
- Config_getBool("MAX_DOT_GRAPH_DEPTH"));
+ Config_getInt("MAX_DOT_GRAPH_DEPTH"));
if (!inheritanceGraph.isTrivial())
{
t << " <inheritancegraph>" << endl;
@@ -987,7 +987,7 @@ static void generateXMLForClass(ClassDef *cd,QTextStream &ti)
t << " </inheritancegraph>" << endl;
}
DotClassGraph collaborationGraph(cd,DotClassGraph::Implementation,
- Config_getBool("MAX_DOT_GRAPH_DEPTH"));
+ Config_getInt("MAX_DOT_GRAPH_DEPTH"));
if (!collaborationGraph.isTrivial())
{
t << " <collaborationgraph>" << endl;
@@ -1162,7 +1162,7 @@ static void generateXMLForFile(FileDef *fd,QTextStream &ti)
t << "</includedby>" << endl;
}
- DotInclDepGraph incDepGraph(fd,FALSE);
+ DotInclDepGraph incDepGraph(fd,Config_getInt("MAX_DOT_GRAPH_DEPTH"),FALSE);
if (!incDepGraph.isTrivial())
{
t << " <incdepgraph>" << endl;
@@ -1170,7 +1170,7 @@ static void generateXMLForFile(FileDef *fd,QTextStream &ti)
t << " </incdepgraph>" << endl;
}
- DotInclDepGraph invIncDepGraph(fd,TRUE);
+ DotInclDepGraph invIncDepGraph(fd,Config_getInt("MAX_DOT_GRAPH_DEPTH"),TRUE);
if (!invIncDepGraph.isTrivial())
{
t << " <invincdepgraph>" << endl;