diff options
author | Dimitri van Heesch <dimitri@stack.nl> | 2003-06-25 18:00:24 (GMT) |
---|---|---|
committer | Dimitri van Heesch <dimitri@stack.nl> | 2003-06-25 18:00:24 (GMT) |
commit | 17c14fb5230cfc532577c32df1d10223534392d8 (patch) | |
tree | d1ce681120f6cf7c6aed4ba77feceafcc66cc853 /src/dot.cpp | |
parent | 80108293f1f4808c02d28d2d1620563437433a56 (diff) | |
download | Doxygen-17c14fb5230cfc532577c32df1d10223534392d8.zip Doxygen-17c14fb5230cfc532577c32df1d10223534392d8.tar.gz Doxygen-17c14fb5230cfc532577c32df1d10223534392d8.tar.bz2 |
Release-1.3.2-20030625
Diffstat (limited to 'src/dot.cpp')
-rw-r--r-- | src/dot.cpp | 10 |
1 files changed, 7 insertions, 3 deletions
diff --git a/src/dot.cpp b/src/dot.cpp index f9bd520..9b3161d 100644 --- a/src/dot.cpp +++ b/src/dot.cpp @@ -1313,7 +1313,7 @@ void writeDotGraph(DotNode *root, ) { // generate the graph description for dot - //printf("writeDotGraph(%s,%d)\n",baseName.data(),backArrows); + //printf("writeDotGraph(%s,%d,lrRank=%d)\n",baseName.data(),backArrows,lrRank); QFile f; f.setName(baseName+".dot"); if (f.open(IO_WriteOnly)) @@ -1415,8 +1415,12 @@ static void findMaximalDotGraph(DotNode *root, } //printf("lastFit=%d\n",lastFit); - bool hasLRRank = (lrRank || (minDistance==1 && width>Config_getInt("MAX_DOT_GRAPH_WIDTH"))) && - !Config_getBool("UML_LOOK"); + bool hasLRRank = (lrRank || + (minDistance==1 && + width>Config_getInt("MAX_DOT_GRAPH_WIDTH") && + !Config_getBool("UML_LOOK") + ) + ); writeDotGraph(root, gt, |