summaryrefslogtreecommitdiffstats
path: root/src/classdef.cpp
diff options
context:
space:
mode:
authorDimitri van Heesch <dimitri@stack.nl>2003-05-24 19:12:41 (GMT)
committerDimitri van Heesch <dimitri@stack.nl>2003-05-24 19:12:41 (GMT)
commitecdf7c392922b84a6a1803270104a448e2723c86 (patch)
tree5225a8b9c0898f1f3f89c69611439a6c5af1d178 /src/classdef.cpp
parent20bd371f722f95bdf9da2d5c27753af4d38e7b6f (diff)
downloadDoxygen-ecdf7c392922b84a6a1803270104a448e2723c86.zip
Doxygen-ecdf7c392922b84a6a1803270104a448e2723c86.tar.gz
Doxygen-ecdf7c392922b84a6a1803270104a448e2723c86.tar.bz2
Release-1.3-20030524
Diffstat (limited to 'src/classdef.cpp')
-rw-r--r--src/classdef.cpp4
1 files changed, 2 insertions, 2 deletions
diff --git a/src/classdef.cpp b/src/classdef.cpp
index ebd7e39..2cce6aa 100644
--- a/src/classdef.cpp
+++ b/src/classdef.cpp
@@ -1057,7 +1057,7 @@ void ClassDef::writeDocumentation(OutputList &ol)
if (Config_getBool("HAVE_DOT") && Config_getBool("CLASS_GRAPH"))
// write class diagram using dot
{
- DotClassGraph inheritanceGraph(this,DotClassGraph::Inheritance,Config_getInt("MAX_DOT_GRAPH_DEPTH"));
+ DotClassGraph inheritanceGraph(this,DotNode::Inheritance,Config_getInt("MAX_DOT_GRAPH_DEPTH"));
if (!inheritanceGraph.isTrivial())
{
ol.pushGeneratorState();
@@ -1092,7 +1092,7 @@ void ClassDef::writeDocumentation(OutputList &ol)
if (Config_getBool("HAVE_DOT") && Config_getBool("COLLABORATION_GRAPH"))
{
- DotClassGraph usageImplGraph(this,DotClassGraph::Implementation,Config_getInt("MAX_DOT_GRAPH_DEPTH"));
+ DotClassGraph usageImplGraph(this,DotNode::Collaboration,Config_getInt("MAX_DOT_GRAPH_DEPTH"));
if (!usageImplGraph.isTrivial())
{
ol.pushGeneratorState();