diff options
author | dimitri <dimitri@afe2bf4a-e733-0410-8a33-86f594647bc7> | 2000-07-03 17:43:17 (GMT) |
---|---|---|
committer | dimitri <dimitri@afe2bf4a-e733-0410-8a33-86f594647bc7> | 2000-07-03 17:43:17 (GMT) |
commit | e3baf8c5ec430e5f09f00384ebdfa35242fd3316 (patch) | |
tree | d1720b58a91abcbfb70196c277ad3b7a11da8263 /src/dot.cpp | |
parent | 1b2fd16cd8ed1830a7743a55dc1b9ec3ec59ad98 (diff) | |
download | Doxygen-e3baf8c5ec430e5f09f00384ebdfa35242fd3316.zip Doxygen-e3baf8c5ec430e5f09f00384ebdfa35242fd3316.tar.gz Doxygen-e3baf8c5ec430e5f09f00384ebdfa35242fd3316.tar.bz2 |
Release-1.1.5
Diffstat (limited to 'src/dot.cpp')
-rw-r--r-- | src/dot.cpp | 3 |
1 files changed, 2 insertions, 1 deletions
diff --git a/src/dot.cpp b/src/dot.cpp index a85e9bd..207aa38 100644 --- a/src/dot.cpp +++ b/src/dot.cpp @@ -996,7 +996,8 @@ static void findMaximalDotGraph(DotNode *root, readBoundingBoxDot(baseName+"_tmp.dot",&width,&height); width = width *96/72; // 96 pixels/inch, 72 points/inch height = height*96/72; // 96 pixels/inch, 72 points/inch - //printf("Found bounding box (%d,%d)\n",width,height); + //printf("Found bounding box (%d,%d) max (%d,%d)\n",width,height, + // Config::maxDotGraphWidth,Config::maxDotGraphHeight); lastFit=(width<Config::maxDotGraphWidth && height<Config::maxDotGraphHeight); if (lastFit) // image is small enough |