diff options
author | Dimitri van Heesch <dimitri@stack.nl> | 2000-09-17 18:25:49 (GMT) |
---|---|---|
committer | Dimitri van Heesch <dimitri@stack.nl> | 2000-09-17 18:25:49 (GMT) |
commit | eb31c4be6b40007136845029ee462bdbcb342736 (patch) | |
tree | 5aba5305b3e7b2fb117c2057d11523840af09720 /src/dot.cpp | |
parent | b91275de37e317332d5c461e4d66a8685e682f80 (diff) | |
download | Doxygen-eb31c4be6b40007136845029ee462bdbcb342736.zip Doxygen-eb31c4be6b40007136845029ee462bdbcb342736.tar.gz Doxygen-eb31c4be6b40007136845029ee462bdbcb342736.tar.bz2 |
Release-1.2.1-20000917
Diffstat (limited to 'src/dot.cpp')
-rw-r--r-- | src/dot.cpp | 6 |
1 files changed, 5 insertions, 1 deletions
diff --git a/src/dot.cpp b/src/dot.cpp index 157b62a..1eff927 100644 --- a/src/dot.cpp +++ b/src/dot.cpp @@ -844,7 +844,11 @@ void DotClassGraph::buildGraph(ClassDef *cd,DotNode *n,int distance,bool base) BaseClassDef *bcd; for ( ; (bcd=bcli.current()) ; ++bcli ) { - addClass(bcd->classDef,n,bcd->prot,0,distance,bcd->templSpecifiers,base); + //printf("addClass: base=%s this=%s templ=%s\n",bcd->classDef->name().data(), + // cd->name().data(),bcd->templSpecifiers.data()); + QCString templSpec; + if (base) templSpec = bcd->templSpecifiers; + addClass(bcd->classDef,n,bcd->prot,0,distance,templSpec,base); } if (m_graphType != Inheritance) { |