diff options
author | Dimitri van Heesch <dimitri@stack.nl> | 2007-07-23 12:18:24 (GMT) |
---|---|---|
committer | Dimitri van Heesch <dimitri@stack.nl> | 2007-07-23 12:18:24 (GMT) |
commit | 0424762097d2a6393d3eed4e2e0a7f32041cfa50 (patch) | |
tree | 3516b1c8607df481887b3e11085f95b9097b8ce3 /src | |
parent | 29a8f144739c86ffad8db2f0c09de66bb641d2e2 (diff) | |
download | Doxygen-0424762097d2a6393d3eed4e2e0a7f32041cfa50.zip Doxygen-0424762097d2a6393d3eed4e2e0a7f32041cfa50.tar.gz Doxygen-0424762097d2a6393d3eed4e2e0a7f32041cfa50.tar.bz2 |
Release-1.5.2-20070719
Diffstat (limited to 'src')
-rw-r--r-- | src/dot.cpp | 4 |
1 files changed, 2 insertions, 2 deletions
diff --git a/src/dot.cpp b/src/dot.cpp index 412eeda..d8d4082 100644 --- a/src/dot.cpp +++ b/src/dot.cpp @@ -1478,11 +1478,11 @@ bool DotClassGraph::determineVisibleNodes(DotNode *rootNode, uint i; for (i=0;i<childTreeWidth.size();i++) { - if (childTreeWidth[i]>maxWidth) maxWidth=childTreeWidth[i]; + if (childTreeWidth.at(i)>maxWidth) maxWidth=childTreeWidth.at(i); } for (i=0;i<parentTreeWidth.size();i++) { - if (parentTreeWidth[i]>maxWidth) maxWidth=parentTreeWidth[i]; + if (parentTreeWidth.at(i)>maxWidth) maxWidth=parentTreeWidth.at(i); } //printf("max tree width=%d, max tree height=%d\n",maxWidth,maxHeight); return maxWidth>80 && maxHeight<12; // used metric to decide to render the tree |